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
f6ed704f
Commit
f6ed704f
authored
Apr 03, 2006
by
Stefan Dösinger
Committed by
Alexandre Julliard
Apr 03, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Make use of WINED3DDEVICE_CREATION_PARAMETERS.
parent
ba41900d
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
device.c
dlls/d3d8/device.c
+1
-1
device.c
dlls/d3d9/device.c
+1
-1
device.c
dlls/wined3d/device.c
+1
-1
wined3d_private.h
dlls/wined3d/wined3d_private.h
+1
-1
wined3d_interface.h
include/wine/wined3d_interface.h
+1
-1
No files found.
dlls/d3d8/device.c
View file @
f6ed704f
...
...
@@ -150,7 +150,7 @@ HRESULT WINAPI IDirect3DDevice8Impl_GetDisplayMode(LPDIRECT3DDEVICE8 iface, D3DD
HRESULT
WINAPI
IDirect3DDevice8Impl_GetCreationParameters
(
LPDIRECT3DDEVICE8
iface
,
D3DDEVICE_CREATION_PARAMETERS
*
pParameters
)
{
IDirect3DDevice8Impl
*
This
=
(
IDirect3DDevice8Impl
*
)
iface
;
TRACE
(
"(%p) Relay
\n
"
,
This
);
return
IWineD3DDevice_GetCreationParameters
(
This
->
WineD3DDevice
,
pParameters
);
return
IWineD3DDevice_GetCreationParameters
(
This
->
WineD3DDevice
,
(
WINED3DDEVICE_CREATION_PARAMETERS
*
)
pParameters
);
}
HRESULT
WINAPI
IDirect3DDevice8Impl_SetCursorProperties
(
LPDIRECT3DDEVICE8
iface
,
UINT
XHotSpot
,
UINT
YHotSpot
,
IDirect3DSurface8
*
pCursorBitmap
)
{
...
...
dlls/d3d9/device.c
View file @
f6ed704f
...
...
@@ -138,7 +138,7 @@ HRESULT WINAPI IDirect3DDevice9Impl_GetDisplayMode(LPDIRECT3DDEVICE9 iface, UI
HRESULT
WINAPI
IDirect3DDevice9Impl_GetCreationParameters
(
LPDIRECT3DDEVICE9
iface
,
D3DDEVICE_CREATION_PARAMETERS
*
pParameters
)
{
IDirect3DDevice9Impl
*
This
=
(
IDirect3DDevice9Impl
*
)
iface
;
TRACE
(
"(%p) Relay
\n
"
,
This
);
return
IWineD3DDevice_GetCreationParameters
(
This
->
WineD3DDevice
,
pParameters
);
return
IWineD3DDevice_GetCreationParameters
(
This
->
WineD3DDevice
,
(
WINED3DDEVICE_CREATION_PARAMETERS
*
)
pParameters
);
}
HRESULT
WINAPI
IDirect3DDevice9Impl_SetCursorProperties
(
LPDIRECT3DDEVICE9
iface
,
UINT
XHotSpot
,
UINT
YHotSpot
,
IDirect3DSurface9
*
pCursorBitmap
)
{
...
...
dlls/wined3d/device.c
View file @
f6ed704f
...
...
@@ -6549,7 +6549,7 @@ HRESULT WINAPI IWineD3DDeviceImpl_SetDialogBoxMode(IWineD3DDevice *iface, BOOL b
}
HRESULT
WINAPI
IWineD3DDeviceImpl_GetCreationParameters
(
IWineD3DDevice
*
iface
,
D3DDEVICE_CREATION_PARAMETERS
*
pParameters
)
{
HRESULT
WINAPI
IWineD3DDeviceImpl_GetCreationParameters
(
IWineD3DDevice
*
iface
,
WINE
D3DDEVICE_CREATION_PARAMETERS
*
pParameters
)
{
IWineD3DDeviceImpl
*
This
=
(
IWineD3DDeviceImpl
*
)
iface
;
TRACE
(
"(%p) : pParameters %p
\n
"
,
This
,
pParameters
);
...
...
dlls/wined3d/wined3d_private.h
View file @
f6ed704f
...
...
@@ -521,7 +521,7 @@ typedef struct IWineD3DDeviceImpl
IWineD3DStateBlockImpl
*
updateStateBlock
;
/* Internal use fields */
D3DDEVICE_CREATION_PARAMETERS
createParms
;
WINED3DDEVICE_CREATION_PARAMETERS
createParms
;
UINT
adapterNo
;
D3DDEVTYPE
devType
;
...
...
include/wine/wined3d_interface.h
View file @
f6ed704f
...
...
@@ -324,7 +324,7 @@ DECLARE_INTERFACE_(IWineD3DDevice,IWineD3DBase)
STDMETHOD
(
EvictManagedResources
)(
THIS
)
PURE
;
STDMETHOD_
(
UINT
,
GetAvailableTextureMem
)(
THIS
)
PURE
;
STDMETHOD
(
GetBackBuffer
)(
THIS_
UINT
iSwapChain
,
UINT
BackBuffer
,
WINED3DBACKBUFFER_TYPE
,
struct
IWineD3DSurface
**
ppBackBuffer
)
PURE
;
STDMETHOD
(
GetCreationParameters
)(
THIS_
D3DDEVICE_CREATION_PARAMETERS
*
pParameters
)
PURE
;
STDMETHOD
(
GetCreationParameters
)(
THIS_
WINE
D3DDEVICE_CREATION_PARAMETERS
*
pParameters
)
PURE
;
STDMETHOD
(
GetDeviceCaps
)(
THIS_
WINED3DCAPS
*
pCaps
)
PURE
;
STDMETHOD
(
GetDirect3D
)(
THIS_
IWineD3D
**
ppD3D
)
PURE
;
STDMETHOD
(
GetDisplayMode
)(
THIS_
UINT
iSwapChain
,
WINED3DDISPLAYMODE
*
pMode
)
PURE
;
...
...
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