Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
cdb2ccd2
Commit
cdb2ccd2
authored
Nov 08, 2009
by
Louis Lenders
Committed by
Alexandre Julliard
Nov 09, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d9: Quiet a few noisy fixme's.
parent
6bb2d5d2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
d3d9_main.c
dlls/d3d9/d3d9_main.c
+5
-3
No files found.
dlls/d3d9/d3d9_main.c
View file @
cdb2ccd2
...
...
@@ -78,7 +78,9 @@ HRESULT WINAPI DECLSPEC_HOTPATCH Direct3DCreate9Ex(UINT SDKVersion, IDirect3D9Ex
*/
void
*
WINAPI
Direct3DShaderValidatorCreate9
(
void
)
{
FIXME
(
"stub
\n
"
);
static
int
once
;
if
(
!
once
++
)
FIXME
(
"stub
\n
"
);
return
NULL
;
}
...
...
@@ -99,7 +101,7 @@ BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
* D3DPERF_BeginEvent (D3D9.@)
*/
int
WINAPI
D3DPERF_BeginEvent
(
D3DCOLOR
color
,
LPCWSTR
name
)
{
FIXM
E
(
"(color %#x, name %s) : stub
\n
"
,
color
,
debugstr_w
(
name
));
TRAC
E
(
"(color %#x, name %s) : stub
\n
"
,
color
,
debugstr_w
(
name
));
return
D3DPERF_event_level
++
;
}
...
...
@@ -108,7 +110,7 @@ int WINAPI D3DPERF_BeginEvent(D3DCOLOR color, LPCWSTR name) {
* D3DPERF_EndEvent (D3D9.@)
*/
int
WINAPI
D3DPERF_EndEvent
(
void
)
{
FIXM
E
(
"(void) : stub
\n
"
);
TRAC
E
(
"(void) : stub
\n
"
);
return
--
D3DPERF_event_level
;
}
...
...
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