Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
06f2829b
Commit
06f2829b
authored
Feb 16, 2007
by
Stefan Dösinger
Committed by
Alexandre Julliard
Feb 19, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Pretend to support event queries.
parent
cd3bc1d1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
device.c
dlls/wined3d/device.c
+9
-1
No files found.
dlls/wined3d/device.c
View file @
06f2829b
...
...
@@ -1088,10 +1088,18 @@ static HRESULT WINAPI IWineD3DDeviceImpl_CreateQuery(IWineD3DDevice *iface, WINE
else
WARN
(
"Unsupported in local OpenGL implementation: ARB_OCCLUSION_QUERY/NV_OCCLUSION_QUERY
\n
"
);
break
;
case
WINED3DQUERYTYPE_EVENT
:
/* Half-Life 2 needs this query. It does not render the main menu correctly otherwise
* Pretend to support it, faking this query does not do much harm except potentially lowering performance
*/
FIXME
(
"(%p) Event query: Unimplemented, but pretending to be supported
\n
"
,
This
);
hr
=
WINED3D_OK
;
break
;
case
WINED3DQUERYTYPE_VCACHE
:
case
WINED3DQUERYTYPE_RESOURCEMANAGER
:
case
WINED3DQUERYTYPE_VERTEXSTATS
:
case
WINED3DQUERYTYPE_EVENT
:
case
WINED3DQUERYTYPE_TIMESTAMP
:
case
WINED3DQUERYTYPE_TIMESTAMPDISJOINT
:
case
WINED3DQUERYTYPE_TIMESTAMPFREQ
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment