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
81ac4adb
Commit
81ac4adb
authored
Dec 24, 2002
by
Christian Costa
Committed by
Alexandre Julliard
Dec 24, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove useless FIXMEs since there is nothing to do in BeginScene and
EndScene.
parent
3da729ea
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
main.c
dlls/ddraw/d3ddevice/main.c
+6
-4
No files found.
dlls/ddraw/d3ddevice/main.c
View file @
81ac4adb
...
...
@@ -40,7 +40,7 @@ Main_IDirect3DDeviceImpl_7_3T_2T_1T_QueryInterface(LPDIRECT3DDEVICE7 iface,
LPVOID
*
obp
)
{
ICOM_THIS_FROM
(
IDirect3DDeviceImpl
,
IDirect3DDevice7
,
iface
);
TRACE
(
"(%p/%p)->(%s,%p)
: stub!
\n
"
,
This
,
iface
,
debugstr_guid
(
riid
),
obp
);
TRACE
(
"(%p/%p)->(%s,%p)
\n
"
,
This
,
iface
,
debugstr_guid
(
riid
),
obp
);
*
obp
=
NULL
;
...
...
@@ -128,7 +128,8 @@ HRESULT WINAPI
Main_IDirect3DDeviceImpl_7_3T_2T_1T_BeginScene
(
LPDIRECT3DDEVICE7
iface
)
{
ICOM_THIS_FROM
(
IDirect3DDeviceImpl
,
IDirect3DDevice7
,
iface
);
FIXME
(
"(%p/%p)->(): stub!
\n
"
,
This
,
iface
);
TRACE
(
"(%p/%p)->()
\n
"
,
This
,
iface
);
/* Nothing to do */
return
DD_OK
;
}
...
...
@@ -136,7 +137,8 @@ HRESULT WINAPI
Main_IDirect3DDeviceImpl_7_3T_2T_1T_EndScene
(
LPDIRECT3DDEVICE7
iface
)
{
ICOM_THIS_FROM
(
IDirect3DDeviceImpl
,
IDirect3DDevice7
,
iface
);
FIXME
(
"(%p/%p)->(): stub!
\n
"
,
This
,
iface
);
TRACE
(
"(%p/%p)->()
\n
"
,
This
,
iface
);
/* Nothing to do */
return
DD_OK
;
}
...
...
@@ -660,7 +662,7 @@ Main_IDirect3DDeviceImpl_3_2T_1T_NextViewport(LPDIRECT3DDEVICE3 iface,
ICOM_THIS_FROM
(
IDirect3DDeviceImpl
,
IDirect3DDevice3
,
iface
);
IDirect3DViewportImpl
*
res
=
NULL
;
TRACE
(
"(%p/%p)->(%p,%p,%08lx)
: stub!
\n
"
,
This
,
iface
,
lpDirect3DViewport3
,
lplpDirect3DViewport3
,
dwFlags
);
TRACE
(
"(%p/%p)->(%p,%p,%08lx)
\n
"
,
This
,
iface
,
lpDirect3DViewport3
,
lplpDirect3DViewport3
,
dwFlags
);
switch
(
dwFlags
)
{
case
D3DNEXT_NEXT
:
{
...
...
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