2 * IDirect3DQuery9 implementation
4 * Copyright 2002-2003 Raphael Junqueira
5 * Copyright 2002-2003 Jason Edmeades
6 * Copyright 2005 Oliver Stieber
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #include "d3d9_private.h"
26 WINE_DEFAULT_DEBUG_CHANNEL(d3d9
);
28 static inline struct d3d9_query
*impl_from_IDirect3DQuery9(IDirect3DQuery9
*iface
)
30 return CONTAINING_RECORD(iface
, struct d3d9_query
, IDirect3DQuery9_iface
);
33 static HRESULT WINAPI
d3d9_query_QueryInterface(IDirect3DQuery9
*iface
, REFIID riid
, void **out
)
35 TRACE("iface %p, riid %s, object %p.\n", iface
, debugstr_guid(riid
), out
);
37 if (IsEqualGUID(riid
, &IID_IDirect3DQuery9
)
38 || IsEqualGUID(riid
, &IID_IUnknown
))
40 IDirect3DQuery9_AddRef(iface
);
45 WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(riid
));
51 static ULONG WINAPI
d3d9_query_AddRef(IDirect3DQuery9
*iface
)
53 struct d3d9_query
*query
= impl_from_IDirect3DQuery9(iface
);
54 ULONG refcount
= InterlockedIncrement(&query
->refcount
);
56 TRACE("%p increasing refcount to %u.\n", iface
, refcount
);
61 static ULONG WINAPI
d3d9_query_Release(IDirect3DQuery9
*iface
)
63 struct d3d9_query
*query
= impl_from_IDirect3DQuery9(iface
);
64 ULONG refcount
= InterlockedDecrement(&query
->refcount
);
66 TRACE("%p decreasing refcount to %u.\n", iface
, refcount
);
71 wined3d_query_decref(query
->wined3d_query
);
72 wined3d_mutex_unlock();
74 IDirect3DDevice9Ex_Release(query
->parent_device
);
75 HeapFree(GetProcessHeap(), 0, query
);
80 static HRESULT WINAPI
d3d9_query_GetDevice(IDirect3DQuery9
*iface
, IDirect3DDevice9
**device
)
82 struct d3d9_query
*query
= impl_from_IDirect3DQuery9(iface
);
84 TRACE("iface %p, device %p.\n", iface
, device
);
86 *device
= (IDirect3DDevice9
*)query
->parent_device
;
87 IDirect3DDevice9_AddRef(*device
);
89 TRACE("Returning device %p.\n", *device
);
94 static D3DQUERYTYPE WINAPI
d3d9_query_GetType(IDirect3DQuery9
*iface
)
96 struct d3d9_query
*query
= impl_from_IDirect3DQuery9(iface
);
99 TRACE("iface %p.\n", iface
);
101 wined3d_mutex_lock();
102 type
= wined3d_query_get_type(query
->wined3d_query
);
103 wined3d_mutex_unlock();
108 static DWORD WINAPI
d3d9_query_GetDataSize(IDirect3DQuery9
*iface
)
110 struct d3d9_query
*query
= impl_from_IDirect3DQuery9(iface
);
111 enum wined3d_query_type type
;
114 TRACE("iface %p.\n", iface
);
116 wined3d_mutex_lock();
117 type
= wined3d_query_get_type(query
->wined3d_query
);
118 if (type
== WINED3D_QUERY_TYPE_TIMESTAMP_DISJOINT
)
121 ret
= wined3d_query_get_data_size(query
->wined3d_query
);
122 wined3d_mutex_unlock();
127 static HRESULT WINAPI
d3d9_query_Issue(IDirect3DQuery9
*iface
, DWORD flags
)
129 struct d3d9_query
*query
= impl_from_IDirect3DQuery9(iface
);
132 TRACE("iface %p, flags %#x.\n", iface
, flags
);
134 wined3d_mutex_lock();
135 hr
= wined3d_query_issue(query
->wined3d_query
, flags
);
136 wined3d_mutex_unlock();
141 static HRESULT WINAPI
d3d9_query_GetData(IDirect3DQuery9
*iface
, void *data
, DWORD size
, DWORD flags
)
143 struct d3d9_query
*query
= impl_from_IDirect3DQuery9(iface
);
144 enum wined3d_query_type type
;
147 TRACE("iface %p, data %p, size %u, flags %#x.\n",
148 iface
, data
, size
, flags
);
150 wined3d_mutex_lock();
151 type
= wined3d_query_get_type(query
->wined3d_query
);
152 if (type
== WINED3D_QUERY_TYPE_TIMESTAMP_DISJOINT
&& data
)
154 struct wined3d_query_data_timestamp_disjoint data_disjoint
;
156 if (size
> sizeof(data_disjoint
.disjoint
))
157 size
= sizeof(data_disjoint
.disjoint
);
159 hr
= wined3d_query_get_data(query
->wined3d_query
, &data_disjoint
, sizeof(data_disjoint
), flags
);
160 memcpy(data
, &data_disjoint
.disjoint
, size
);
164 hr
= wined3d_query_get_data(query
->wined3d_query
, data
, size
, flags
);
166 wined3d_mutex_unlock();
172 static const struct IDirect3DQuery9Vtbl d3d9_query_vtbl
=
174 d3d9_query_QueryInterface
,
177 d3d9_query_GetDevice
,
179 d3d9_query_GetDataSize
,
184 HRESULT
query_init(struct d3d9_query
*query
, struct d3d9_device
*device
, D3DQUERYTYPE type
)
188 query
->IDirect3DQuery9_iface
.lpVtbl
= &d3d9_query_vtbl
;
191 wined3d_mutex_lock();
192 hr
= wined3d_query_create(device
->wined3d_device
, type
, query
, &query
->wined3d_query
);
193 wined3d_mutex_unlock();
196 WARN("Failed to create wined3d query, hr %#x.\n", hr
);
200 query
->parent_device
= &device
->IDirect3DDevice9Ex_iface
;
201 IDirect3DDevice9Ex_AddRef(query
->parent_device
);