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
a9f2613d
Commit
a9f2613d
authored
Dec 10, 2009
by
Henri Verbeet
Committed by
Alexandre Julliard
Dec 11, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Add a separate function for swapchain initialization.
parent
75ef50e4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
1 deletion
+4
-1
device.c
dlls/wined3d/device.c
+0
-0
swapchain.c
dlls/wined3d/swapchain.c
+0
-0
wined3d_private.h
dlls/wined3d/wined3d_private.h
+4
-1
No files found.
dlls/wined3d/device.c
View file @
a9f2613d
This diff is collapsed.
Click to expand it.
dlls/wined3d/swapchain.c
View file @
a9f2613d
This diff is collapsed.
Click to expand it.
dlls/wined3d/wined3d_private.h
View file @
a9f2613d
...
...
@@ -1598,6 +1598,8 @@ HRESULT IWineD3DDeviceImpl_ClearSurface(IWineD3DDeviceImpl *This, IWineD3DSurfac
const
WINED3DRECT
*
pRects
,
DWORD
Flags
,
WINED3DCOLOR
Color
,
float
Z
,
DWORD
Stencil
)
DECLSPEC_HIDDEN
;
void
IWineD3DDeviceImpl_FindTexUnitMap
(
IWineD3DDeviceImpl
*
This
)
DECLSPEC_HIDDEN
;
void
IWineD3DDeviceImpl_MarkStateDirty
(
IWineD3DDeviceImpl
*
This
,
DWORD
state
)
DECLSPEC_HIDDEN
;
void
IWineD3DDeviceImpl_SetupFullscreenWindow
(
IWineD3DDeviceImpl
*
This
,
HWND
window
,
UINT
w
,
UINT
h
)
DECLSPEC_HIDDEN
;
static
inline
BOOL
isStateDirty
(
struct
wined3d_context
*
context
,
DWORD
state
)
{
DWORD
idx
=
state
>>
5
;
...
...
@@ -2423,7 +2425,6 @@ typedef struct IWineD3DSwapChainImpl
HWND
win_handle
;
}
IWineD3DSwapChainImpl
;
extern
const
IWineD3DSwapChainVtbl
IWineD3DSwapChain_Vtbl
DECLSPEC_HIDDEN
;
const
IWineD3DSwapChainVtbl
IWineGDISwapChain_Vtbl
DECLSPEC_HIDDEN
;
void
x11_copy_to_screen
(
IWineD3DSwapChainImpl
*
This
,
const
RECT
*
rc
)
DECLSPEC_HIDDEN
;
...
...
@@ -2450,6 +2451,8 @@ HRESULT WINAPI IWineD3DBaseSwapChainImpl_GetGammaRamp(IWineD3DSwapChain *iface,
WINED3DGAMMARAMP
*
pRamp
)
DECLSPEC_HIDDEN
;
struct
wined3d_context
*
swapchain_create_context_for_thread
(
IWineD3DSwapChain
*
iface
)
DECLSPEC_HIDDEN
;
HRESULT
swapchain_init
(
IWineD3DSwapChainImpl
*
swapchain
,
WINED3DSURFTYPE
surface_type
,
IWineD3DDeviceImpl
*
device
,
WINED3DPRESENT_PARAMETERS
*
present_parameters
,
IUnknown
*
parent
)
DECLSPEC_HIDDEN
;
#define DEFAULT_REFRESH_RATE 0
...
...
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