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
a3daed96
Commit
a3daed96
authored
Sep 19, 2014
by
Henri Verbeet
Committed by
Alexandre Julliard
Sep 19, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d10core: Implement d3d10_device_GetPredication().
parent
fdf60e51
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
46 additions
and
9 deletions
+46
-9
async.c
dlls/d3d10core/async.c
+1
-1
device.c
dlls/d3d10core/device.c
+15
-1
query.c
dlls/d3d9/query.c
+1
-1
device.c
dlls/wined3d/device.c
+8
-0
query.c
dlls/wined3d/query.c
+13
-4
wined3d.spec
dlls/wined3d/wined3d.spec
+3
-1
wined3d_private.h
dlls/wined3d/wined3d_private.h
+2
-0
wined3d.h
include/wine/wined3d.h
+3
-1
No files found.
dlls/d3d10core/async.c
View file @
a3daed96
...
...
@@ -209,7 +209,7 @@ HRESULT d3d10_query_init(struct d3d10_query *query, struct d3d10_device *device,
query
->
refcount
=
1
;
if
(
FAILED
(
hr
=
wined3d_query_create
(
device
->
wined3d_device
,
query_type_map
[
desc
->
Query
],
&
query
->
wined3d_query
)))
query_type_map
[
desc
->
Query
],
query
,
&
query
->
wined3d_query
)))
{
WARN
(
"Failed to create wined3d query, hr %#x.
\n
"
,
hr
);
return
hr
;
...
...
dlls/d3d10core/device.c
View file @
a3daed96
...
...
@@ -980,7 +980,21 @@ static void STDMETHODCALLTYPE d3d10_device_VSGetSamplers(ID3D10Device1 *iface,
static
void
STDMETHODCALLTYPE
d3d10_device_GetPredication
(
ID3D10Device1
*
iface
,
ID3D10Predicate
**
predicate
,
BOOL
*
value
)
{
FIXME
(
"iface %p, predicate %p, value %p stub!
\n
"
,
iface
,
predicate
,
value
);
struct
d3d10_device
*
device
=
impl_from_ID3D10Device
(
iface
);
struct
wined3d_query
*
wined3d_predicate
;
struct
d3d10_query
*
predicate_impl
;
TRACE
(
"iface %p, predicate %p, value %p.
\n
"
,
iface
,
predicate
,
value
);
if
(
!
(
wined3d_predicate
=
wined3d_device_get_predication
(
device
->
wined3d_device
,
value
)))
{
*
predicate
=
NULL
;
return
;
}
predicate_impl
=
wined3d_query_get_parent
(
wined3d_predicate
);
*
predicate
=
(
ID3D10Predicate
*
)
&
predicate_impl
->
ID3D10Query_iface
;
ID3D10Predicate_AddRef
(
*
predicate
);
}
static
void
STDMETHODCALLTYPE
d3d10_device_GSGetShaderResources
(
ID3D10Device1
*
iface
,
...
...
dlls/d3d9/query.c
View file @
a3daed96
...
...
@@ -189,7 +189,7 @@ HRESULT query_init(struct d3d9_query *query, struct d3d9_device *device, D3DQUER
query
->
refcount
=
1
;
wined3d_mutex_lock
();
hr
=
wined3d_query_create
(
device
->
wined3d_device
,
type
,
&
query
->
wined3d_query
);
hr
=
wined3d_query_create
(
device
->
wined3d_device
,
type
,
query
,
&
query
->
wined3d_query
);
wined3d_mutex_unlock
();
if
(
FAILED
(
hr
))
{
...
...
dlls/wined3d/device.c
View file @
a3daed96
...
...
@@ -3354,6 +3354,14 @@ void CDECL wined3d_device_set_predication(struct wined3d_device *device,
wined3d_query_decref
(
prev
);
}
struct
wined3d_query
*
CDECL
wined3d_device_get_predication
(
struct
wined3d_device
*
device
,
BOOL
*
value
)
{
TRACE
(
"device %p, value %p.
\n
"
,
device
,
value
);
*
value
=
device
->
state
.
predicate_value
;
return
device
->
state
.
predicate
;
}
void
CDECL
wined3d_device_set_primitive_type
(
struct
wined3d_device
*
device
,
enum
wined3d_primitive_type
primitive_type
)
{
...
...
dlls/wined3d/query.c
View file @
a3daed96
...
...
@@ -421,6 +421,13 @@ static HRESULT wined3d_event_query_ops_get_data(struct wined3d_query *query,
return
S_OK
;
}
void
*
CDECL
wined3d_query_get_parent
(
const
struct
wined3d_query
*
query
)
{
TRACE
(
"query %p.
\n
"
,
query
);
return
query
->
parent
;
}
enum
wined3d_query_type
CDECL
wined3d_query_get_type
(
const
struct
wined3d_query
*
query
)
{
TRACE
(
"query %p.
\n
"
,
query
);
...
...
@@ -698,10 +705,13 @@ static const struct wined3d_query_ops timestamp_disjoint_query_ops =
wined3d_timestamp_disjoint_query_ops_issue
,
};
static
HRESULT
query_init
(
struct
wined3d_query
*
query
,
struct
wined3d_device
*
device
,
enum
wined3d_query_type
type
)
static
HRESULT
query_init
(
struct
wined3d_query
*
query
,
struct
wined3d_device
*
device
,
enum
wined3d_query_type
type
,
void
*
parent
)
{
const
struct
wined3d_gl_info
*
gl_info
=
&
device
->
adapter
->
gl_info
;
query
->
parent
=
parent
;
switch
(
type
)
{
case
WINED3D_QUERY_TYPE_OCCLUSION
:
...
...
@@ -797,7 +807,7 @@ static HRESULT query_init(struct wined3d_query *query, struct wined3d_device *de
}
HRESULT
CDECL
wined3d_query_create
(
struct
wined3d_device
*
device
,
enum
wined3d_query_type
type
,
struct
wined3d_query
**
query
)
enum
wined3d_query_type
type
,
void
*
parent
,
struct
wined3d_query
**
query
)
{
struct
wined3d_query
*
object
;
HRESULT
hr
;
...
...
@@ -808,8 +818,7 @@ HRESULT CDECL wined3d_query_create(struct wined3d_device *device,
if
(
!
object
)
return
E_OUTOFMEMORY
;
hr
=
query_init
(
object
,
device
,
type
);
if
(
FAILED
(
hr
))
if
(
FAILED
(
hr
=
query_init
(
object
,
device
,
type
,
parent
)))
{
WARN
(
"Failed to initialize query, hr %#x.
\n
"
,
hr
);
HeapFree
(
GetProcessHeap
(),
0
,
object
);
...
...
dlls/wined3d/wined3d.spec
View file @
a3daed96
...
...
@@ -67,6 +67,7 @@
@ cdecl wined3d_device_get_material(ptr ptr)
@ cdecl wined3d_device_get_npatch_mode(ptr)
@ cdecl wined3d_device_get_pixel_shader(ptr)
@ cdecl wined3d_device_get_predication(ptr ptr)
@ cdecl wined3d_device_get_primitive_type(ptr ptr)
@ cdecl wined3d_device_get_ps_cb(ptr long)
@ cdecl wined3d_device_get_ps_consts_b(ptr long ptr long)
...
...
@@ -169,10 +170,11 @@
@ cdecl wined3d_palette_incref(ptr)
@ cdecl wined3d_palette_set_entries(ptr long long long ptr)
@ cdecl wined3d_query_create(ptr long ptr)
@ cdecl wined3d_query_create(ptr long ptr
ptr
)
@ cdecl wined3d_query_decref(ptr)
@ cdecl wined3d_query_get_data(ptr ptr long long)
@ cdecl wined3d_query_get_data_size(ptr)
@ cdecl wined3d_query_get_parent(ptr)
@ cdecl wined3d_query_get_type(ptr)
@ cdecl wined3d_query_incref(ptr)
@ cdecl wined3d_query_issue(ptr long)
...
...
dlls/wined3d/wined3d_private.h
View file @
a3daed96
...
...
@@ -2559,6 +2559,8 @@ struct wined3d_query_ops
struct
wined3d_query
{
LONG
ref
;
void
*
parent
;
const
struct
wined3d_query_ops
*
query_ops
;
struct
wined3d_device
*
device
;
enum
query_state
state
;
...
...
include/wine/wined3d.h
View file @
a3daed96
...
...
@@ -2145,6 +2145,7 @@ HRESULT __cdecl wined3d_device_get_light_enable(const struct wined3d_device *dev
void
__cdecl
wined3d_device_get_material
(
const
struct
wined3d_device
*
device
,
struct
wined3d_material
*
material
);
float
__cdecl
wined3d_device_get_npatch_mode
(
const
struct
wined3d_device
*
device
);
struct
wined3d_shader
*
__cdecl
wined3d_device_get_pixel_shader
(
const
struct
wined3d_device
*
device
);
struct
wined3d_query
*
__cdecl
wined3d_device_get_predication
(
struct
wined3d_device
*
device
,
BOOL
*
value
);
void
__cdecl
wined3d_device_get_primitive_type
(
const
struct
wined3d_device
*
device
,
enum
wined3d_primitive_type
*
primitive_topology
);
struct
wined3d_buffer
*
__cdecl
wined3d_device_get_ps_cb
(
const
struct
wined3d_device
*
device
,
UINT
idx
);
...
...
@@ -2304,10 +2305,11 @@ HRESULT __cdecl wined3d_palette_set_entries(struct wined3d_palette *palette,
DWORD
flags
,
DWORD
start
,
DWORD
count
,
const
PALETTEENTRY
*
entries
);
HRESULT
__cdecl
wined3d_query_create
(
struct
wined3d_device
*
device
,
enum
wined3d_query_type
type
,
struct
wined3d_query
**
query
);
enum
wined3d_query_type
type
,
void
*
parent
,
struct
wined3d_query
**
query
);
ULONG
__cdecl
wined3d_query_decref
(
struct
wined3d_query
*
query
);
HRESULT
__cdecl
wined3d_query_get_data
(
struct
wined3d_query
*
query
,
void
*
data
,
UINT
data_size
,
DWORD
flags
);
UINT
__cdecl
wined3d_query_get_data_size
(
const
struct
wined3d_query
*
query
);
void
*
__cdecl
wined3d_query_get_parent
(
const
struct
wined3d_query
*
query
);
enum
wined3d_query_type
__cdecl
wined3d_query_get_type
(
const
struct
wined3d_query
*
query
);
ULONG
__cdecl
wined3d_query_incref
(
struct
wined3d_query
*
query
);
HRESULT
__cdecl
wined3d_query_issue
(
struct
wined3d_query
*
query
,
DWORD
flags
);
...
...
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