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
43f469ec
Commit
43f469ec
authored
Jan 19, 2009
by
Henri Verbeet
Committed by
Alexandre Julliard
Jan 19, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d10core: Implement device_parent_CreateSurface().
parent
f21b4368
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
123 additions
and
24 deletions
+123
-24
.gitignore
.gitignore
+1
-1
d3d10core_private.h
dlls/d3d10core/d3d10core_private.h
+3
-0
device.c
dlls/d3d10core/device.c
+62
-2
texture2d.c
dlls/d3d10core/texture2d.c
+6
-0
Makefile.in
dlls/dxgi/Makefile.in
+0
-2
device.c
dlls/dxgi/device.c
+34
-14
dxgi_private.h
dlls/dxgi/dxgi_private.h
+3
-3
Makefile.in
include/Makefile.in
+2
-1
winedxgi.idl
include/wine/winedxgi.idl
+11
-1
make_makefiles
tools/make_makefiles
+1
-0
No files found.
.gitignore
View file @
43f469ec
...
...
@@ -34,7 +34,6 @@ dlls/ctl3dv2.dll16
dlls/ddeml.dll16
dlls/dispdib.dll16
dlls/display.drv16
dlls/dxgi/dxgi_private_interface.h
dlls/gdi.exe16
dlls/imm.dll16
dlls/jscript/jsglobal.tlb
...
...
@@ -202,6 +201,7 @@ include/vmr9.h
include/wine/itss.h
include/wine/svcctl.h
include/wine/wined3d.h
include/wine/winedxgi.h
include/wtypes.h
include/wuapi.h
include/xmldom.h
...
...
dlls/d3d10core/d3d10core_private.h
View file @
43f469ec
...
...
@@ -32,6 +32,7 @@
#include "initguid.h"
#endif
#include "wine/wined3d.h"
#include "wine/winedxgi.h"
/* TRACE helper functions */
const
char
*
debug_d3d10_primitive_topology
(
D3D10_PRIMITIVE_TOPOLOGY
topology
);
...
...
@@ -56,6 +57,8 @@ struct d3d10_texture2d
{
const
struct
ID3D10Texture2DVtbl
*
vtbl
;
LONG
refcount
;
IWineD3DSurface
*
wined3d_surface
;
};
/* Layered device */
...
...
dlls/d3d10core/device.c
View file @
43f469ec
...
...
@@ -575,6 +575,7 @@ static HRESULT STDMETHODCALLTYPE d3d10_device_CreateTexture2D(ID3D10Device *ifac
const
D3D10_TEXTURE2D_DESC
*
desc
,
const
D3D10_SUBRESOURCE_DATA
*
data
,
ID3D10Texture2D
**
texture
)
{
struct
d3d10_texture2d
*
object
;
HRESULT
hr
;
FIXME
(
"iface %p, desc %p, data %p, texture %p partial stub!
\n
"
,
iface
,
desc
,
data
,
texture
);
...
...
@@ -587,6 +588,37 @@ static HRESULT STDMETHODCALLTYPE d3d10_device_CreateTexture2D(ID3D10Device *ifac
object
->
vtbl
=
&
d3d10_texture2d_vtbl
;
object
->
refcount
=
1
;
if
(
desc
->
MipLevels
==
1
&&
desc
->
ArraySize
==
1
)
{
IWineD3DDevice
*
wined3d_device
;
IWineDXGIDevice
*
wine_device
;
hr
=
ID3D10Device_QueryInterface
(
iface
,
&
IID_IWineDXGIDevice
,
(
void
**
)
&
wine_device
);
if
(
FAILED
(
hr
))
{
ERR
(
"Device should implement IWineDXGIDevice
\n
"
);
HeapFree
(
GetProcessHeap
(),
0
,
object
);
return
E_FAIL
;
}
wined3d_device
=
IWineDXGIDevice_get_wined3d_device
(
wine_device
);
IWineDXGIDevice_Release
(
wine_device
);
FIXME
(
"Implement DXGI<->wined3d format and usage conversion
\n
"
);
hr
=
IWineD3DDevice_CreateSurface
(
wined3d_device
,
desc
->
Width
,
desc
->
Height
,
desc
->
Format
,
FALSE
,
FALSE
,
0
,
&
object
->
wined3d_surface
,
WINED3DRTYPE_SURFACE
,
desc
->
Usage
,
WINED3DPOOL_DEFAULT
,
desc
->
SampleDesc
.
Count
,
desc
->
SampleDesc
.
Quality
,
NULL
,
SURFACE_OPENGL
,
(
IUnknown
*
)
object
);
IWineD3DDevice_Release
(
wined3d_device
);
if
(
FAILED
(
hr
))
{
ERR
(
"CreateSurface failed, returning %#x
\n
"
,
hr
);
HeapFree
(
GetProcessHeap
(),
0
,
object
);
return
hr
;
}
}
*
texture
=
(
ID3D10Texture2D
*
)
object
;
TRACE
(
"Created ID3D10Texture2D %p
\n
"
,
object
);
...
...
@@ -937,11 +969,39 @@ static HRESULT STDMETHODCALLTYPE device_parent_CreateSurface(IWineD3DDeviceParen
IUnknown
*
superior
,
UINT
width
,
UINT
height
,
WINED3DFORMAT
format
,
DWORD
usage
,
WINED3DPOOL
pool
,
UINT
level
,
WINED3DCUBEMAP_FACES
face
,
IWineD3DSurface
**
surface
)
{
struct
d3d10_device
*
This
=
device_from_device_parent
(
iface
);
struct
d3d10_texture2d
*
texture
;
D3D10_TEXTURE2D_DESC
desc
;
HRESULT
hr
;
FIXME
(
"iface %p, superior %p, width %u, height %u, format %#x, usage %#x,
\n
"
"
\t
pool %#x, level %u, face %u, surface %p stub!
\n
"
,
"
\t
pool %#x, level %u, face %u, surface %p
partial
stub!
\n
"
,
iface
,
superior
,
width
,
height
,
format
,
usage
,
pool
,
level
,
face
,
surface
);
return
E_NOTIMPL
;
FIXME
(
"Implement DXGI<->wined3d format and usage conversion
\n
"
);
desc
.
Width
=
width
;
desc
.
Height
=
height
;
desc
.
MipLevels
=
1
;
desc
.
ArraySize
=
1
;
desc
.
Format
=
format
;
desc
.
SampleDesc
.
Count
=
1
;
desc
.
SampleDesc
.
Quality
=
0
;
desc
.
Usage
=
usage
;
desc
.
BindFlags
=
0
;
desc
.
CPUAccessFlags
=
0
;
desc
.
MiscFlags
=
0
;
hr
=
d3d10_device_CreateTexture2D
((
ID3D10Device
*
)
This
,
&
desc
,
NULL
,
(
ID3D10Texture2D
**
)
&
texture
);
if
(
FAILED
(
hr
))
{
ERR
(
"CreateTexture2D failed, returning %#x
\n
"
,
hr
);
return
hr
;
}
*
surface
=
texture
->
wined3d_surface
;
return
S_OK
;
}
static
HRESULT
STDMETHODCALLTYPE
device_parent_CreateRenderTarget
(
IWineD3DDeviceParent
*
iface
,
...
...
dlls/d3d10core/texture2d.c
View file @
43f469ec
...
...
@@ -63,6 +63,12 @@ static ULONG STDMETHODCALLTYPE d3d10_texture2d_Release(ID3D10Texture2D *iface)
TRACE
(
"%p decreasing refcount to %u
\n
"
,
This
,
refcount
);
if
(
!
refcount
)
{
if
(
This
->
wined3d_surface
)
IWineD3DSurface_Release
(
This
->
wined3d_surface
);
HeapFree
(
GetProcessHeap
(),
0
,
This
);
}
return
refcount
;
}
...
...
dlls/dxgi/Makefile.in
View file @
43f469ec
...
...
@@ -17,8 +17,6 @@ C_SRCS = \
RC_SRCS
=
version.rc
IDL_H_SRCS
=
dxgi_private_interface.idl
@MAKE_DLL_RULES@
@DEPENDENCIES@
# everything below this line is overwritten by make depend
dlls/dxgi/device.c
View file @
43f469ec
...
...
@@ -26,7 +26,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(dxgi);
/* IUnknown methods */
static
HRESULT
STDMETHODCALLTYPE
dxgi_device_QueryInterface
(
IDXGIDevice
*
iface
,
REFIID
riid
,
void
**
object
)
static
HRESULT
STDMETHODCALLTYPE
dxgi_device_QueryInterface
(
I
Wine
DXGIDevice
*
iface
,
REFIID
riid
,
void
**
object
)
{
struct
dxgi_device
*
This
=
(
struct
dxgi_device
*
)
iface
;
...
...
@@ -34,7 +34,8 @@ static HRESULT STDMETHODCALLTYPE dxgi_device_QueryInterface(IDXGIDevice *iface,
if
(
IsEqualGUID
(
riid
,
&
IID_IUnknown
)
||
IsEqualGUID
(
riid
,
&
IID_IDXGIObject
)
||
IsEqualGUID
(
riid
,
&
IID_IDXGIDevice
))
||
IsEqualGUID
(
riid
,
&
IID_IDXGIDevice
)
||
IsEqualGUID
(
riid
,
&
IID_IWineDXGIDevice
))
{
IUnknown_AddRef
(
iface
);
*
object
=
iface
;
...
...
@@ -53,7 +54,7 @@ static HRESULT STDMETHODCALLTYPE dxgi_device_QueryInterface(IDXGIDevice *iface,
return
E_NOINTERFACE
;
}
static
ULONG
STDMETHODCALLTYPE
dxgi_device_AddRef
(
IDXGIDevice
*
iface
)
static
ULONG
STDMETHODCALLTYPE
dxgi_device_AddRef
(
I
Wine
DXGIDevice
*
iface
)
{
struct
dxgi_device
*
This
=
(
struct
dxgi_device
*
)
iface
;
ULONG
refcount
=
InterlockedIncrement
(
&
This
->
refcount
);
...
...
@@ -63,7 +64,7 @@ static ULONG STDMETHODCALLTYPE dxgi_device_AddRef(IDXGIDevice *iface)
return
refcount
;
}
static
ULONG
STDMETHODCALLTYPE
dxgi_device_Release
(
IDXGIDevice
*
iface
)
static
ULONG
STDMETHODCALLTYPE
dxgi_device_Release
(
I
Wine
DXGIDevice
*
iface
)
{
struct
dxgi_device
*
This
=
(
struct
dxgi_device
*
)
iface
;
ULONG
refcount
=
InterlockedDecrement
(
&
This
->
refcount
);
...
...
@@ -85,28 +86,31 @@ static ULONG STDMETHODCALLTYPE dxgi_device_Release(IDXGIDevice *iface)
/* IDXGIObject methods */
static
HRESULT
STDMETHODCALLTYPE
dxgi_device_SetPrivateData
(
IDXGIDevice
*
iface
,
REFGUID
guid
,
UINT
data_size
,
const
void
*
data
)
static
HRESULT
STDMETHODCALLTYPE
dxgi_device_SetPrivateData
(
IWineDXGIDevice
*
iface
,
REFGUID
guid
,
UINT
data_size
,
const
void
*
data
)
{
FIXME
(
"iface %p, guid %s, data_size %u, data %p stub!
\n
"
,
iface
,
debugstr_guid
(
guid
),
data_size
,
data
);
return
E_NOTIMPL
;
}
static
HRESULT
STDMETHODCALLTYPE
dxgi_device_SetPrivateDataInterface
(
IDXGIDevice
*
iface
,
REFGUID
guid
,
const
IUnknown
*
object
)
static
HRESULT
STDMETHODCALLTYPE
dxgi_device_SetPrivateDataInterface
(
IWineDXGIDevice
*
iface
,
REFGUID
guid
,
const
IUnknown
*
object
)
{
FIXME
(
"iface %p, guid %s, object %p stub!
\n
"
,
iface
,
debugstr_guid
(
guid
),
object
);
return
E_NOTIMPL
;
}
static
HRESULT
STDMETHODCALLTYPE
dxgi_device_GetPrivateData
(
IDXGIDevice
*
iface
,
REFGUID
guid
,
UINT
*
data_size
,
void
*
data
)
static
HRESULT
STDMETHODCALLTYPE
dxgi_device_GetPrivateData
(
IWineDXGIDevice
*
iface
,
REFGUID
guid
,
UINT
*
data_size
,
void
*
data
)
{
FIXME
(
"iface %p, guid %s, data_size %p, data %p stub!
\n
"
,
iface
,
debugstr_guid
(
guid
),
data_size
,
data
);
return
E_NOTIMPL
;
}
static
HRESULT
STDMETHODCALLTYPE
dxgi_device_GetParent
(
IDXGIDevice
*
iface
,
REFIID
riid
,
void
**
parent
)
static
HRESULT
STDMETHODCALLTYPE
dxgi_device_GetParent
(
I
Wine
DXGIDevice
*
iface
,
REFIID
riid
,
void
**
parent
)
{
FIXME
(
"iface %p, riid %s, parent %p stub!
\n
"
,
iface
,
debugstr_guid
(
riid
),
parent
);
...
...
@@ -115,7 +119,7 @@ static HRESULT STDMETHODCALLTYPE dxgi_device_GetParent(IDXGIDevice *iface, REFII
/* IDXGIDevice methods */
static
HRESULT
STDMETHODCALLTYPE
dxgi_device_GetAdapter
(
IDXGIDevice
*
iface
,
IDXGIAdapter
**
adapter
)
static
HRESULT
STDMETHODCALLTYPE
dxgi_device_GetAdapter
(
I
Wine
DXGIDevice
*
iface
,
IDXGIAdapter
**
adapter
)
{
struct
dxgi_device
*
This
=
(
struct
dxgi_device
*
)
iface
;
WINED3DDEVICE_CREATION_PARAMETERS
create_parameters
;
...
...
@@ -137,7 +141,7 @@ static HRESULT STDMETHODCALLTYPE dxgi_device_GetAdapter(IDXGIDevice *iface, IDXG
return
IWineDXGIFactory_EnumAdapters
(
This
->
factory
,
create_parameters
.
AdapterOrdinal
,
adapter
);
}
static
HRESULT
STDMETHODCALLTYPE
dxgi_device_CreateSurface
(
IDXGIDevice
*
iface
,
static
HRESULT
STDMETHODCALLTYPE
dxgi_device_CreateSurface
(
I
Wine
DXGIDevice
*
iface
,
const
DXGI_SURFACE_DESC
*
desc
,
UINT
surface_count
,
DXGI_USAGE
usage
,
const
DXGI_SHARED_RESOURCE
*
shared_resource
,
IDXGISurface
**
surface
)
{
...
...
@@ -176,7 +180,7 @@ fail:
return
hr
;
}
static
HRESULT
STDMETHODCALLTYPE
dxgi_device_QueryResourceResidency
(
IDXGIDevice
*
iface
,
static
HRESULT
STDMETHODCALLTYPE
dxgi_device_QueryResourceResidency
(
I
Wine
DXGIDevice
*
iface
,
IUnknown
*
const
*
resources
,
DXGI_RESIDENCY
*
residency
,
UINT
resource_count
)
{
FIXME
(
"iface %p, resources %p, residency %p, resource_count %u stub!
\n
"
,
...
...
@@ -185,21 +189,35 @@ static HRESULT STDMETHODCALLTYPE dxgi_device_QueryResourceResidency(IDXGIDevice
return
E_NOTIMPL
;
}
static
HRESULT
STDMETHODCALLTYPE
dxgi_device_SetGPUThreadPriority
(
IDXGIDevice
*
iface
,
INT
priority
)
static
HRESULT
STDMETHODCALLTYPE
dxgi_device_SetGPUThreadPriority
(
I
Wine
DXGIDevice
*
iface
,
INT
priority
)
{
FIXME
(
"iface %p, priority %d stub!
\n
"
,
iface
,
priority
);
return
E_NOTIMPL
;
}
static
HRESULT
STDMETHODCALLTYPE
dxgi_device_GetGPUThreadPriority
(
IDXGIDevice
*
iface
,
INT
*
priority
)
static
HRESULT
STDMETHODCALLTYPE
dxgi_device_GetGPUThreadPriority
(
I
Wine
DXGIDevice
*
iface
,
INT
*
priority
)
{
FIXME
(
"iface %p, priority %p stub!
\n
"
,
iface
,
priority
);
return
E_NOTIMPL
;
}
const
struct
IDXGIDeviceVtbl
dxgi_device_vtbl
=
/* IWineDXGIDevice methods */
static
IWineD3DDevice
*
STDMETHODCALLTYPE
dxgi_device_get_wined3d_device
(
IWineDXGIDevice
*
iface
)
{
struct
dxgi_device
*
This
=
(
struct
dxgi_device
*
)
iface
;
TRACE
(
"iface %p
\n
"
,
iface
);
EnterCriticalSection
(
&
dxgi_cs
);
IWineD3DDevice_AddRef
(
This
->
wined3d_device
);
LeaveCriticalSection
(
&
dxgi_cs
);
return
This
->
wined3d_device
;
}
const
struct
IWineDXGIDeviceVtbl
dxgi_device_vtbl
=
{
/* IUnknown methods */
dxgi_device_QueryInterface
,
...
...
@@ -216,4 +234,6 @@ const struct IDXGIDeviceVtbl dxgi_device_vtbl =
dxgi_device_QueryResourceResidency
,
dxgi_device_SetGPUThreadPriority
,
dxgi_device_GetGPUThreadPriority
,
/* IWineDXGIAdapter methods */
dxgi_device_get_wined3d_device
,
};
dlls/dxgi/dxgi_private.h
View file @
43f469ec
...
...
@@ -32,7 +32,7 @@
#include "initguid.h"
#endif
#include "wine/wined3d.h"
#include "
dxgi_private_interface
.h"
#include "
wine/winedxgi
.h"
extern
CRITICAL_SECTION
dxgi_cs
;
...
...
@@ -51,10 +51,10 @@ struct dxgi_factory
};
/* IDXGIDevice */
extern
const
struct
IDXGIDeviceVtbl
dxgi_device_vtbl
;
extern
const
struct
I
Wine
DXGIDeviceVtbl
dxgi_device_vtbl
;
struct
dxgi_device
{
const
struct
IDXGIDeviceVtbl
*
vtbl
;
const
struct
I
Wine
DXGIDeviceVtbl
*
vtbl
;
IUnknown
*
child_layer
;
LONG
refcount
;
IWineD3DDevice
*
wined3d_device
;
...
...
include/Makefile.in
View file @
43f469ec
...
...
@@ -5,7 +5,8 @@ VPATH = @srcdir@
MODULE
=
none
PRIVATE_IDL_H_SRCS
=
\
wine/wined3d.idl
wine/wined3d.idl
\
wine/winedxgi.idl
PUBLIC_IDL_H_SRCS
=
\
activaut.idl
\
...
...
dlls/dxgi/dxgi_private_interface
.idl
→
include/wine/winedxgi
.idl
View file @
43f469ec
/*
*
Copyright
2008
Henri
Verbeet
for
CodeWeavers
*
Copyright
2008
-
2009
Henri
Verbeet
for
CodeWeavers
*
*
This
library
is
free
software
; you can redistribute it and/or
*
modify
it
under
the
terms
of
the
GNU
Lesser
General
Public
...
...
@@ -37,3 +37,13 @@ interface IWineDXGIAdapter : IDXGIAdapter
{
UINT
get_ordinal
()
;
}
[
object
,
local
,
uuid
(
3
e1ff30b
-
c951
-
48
c3
-
b010
-
0
fb49f3dca71
)
]
interface
IWineDXGIDevice
:
IDXGIDevice
{
struct
IWineD3DDevice
*
get_wined3d_device
()
;
}
tools/make_makefiles
View file @
43f469ec
...
...
@@ -116,6 +116,7 @@ my %private_idl_headers = (
"dyngraph.idl"
=>
1
,
"vmrender.idl"
=>
1
,
"wine/wined3d.idl"
=>
1
,
"wine/winedxgi.idl"
=>
1
,
);
my
(
@makefiles
,
%
makefiles
);
...
...
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