2005-03-03 14:57:15 +01:00
|
|
|
/*
|
|
|
|
* IWineD3DQuery implementation
|
|
|
|
*
|
|
|
|
* Copyright 2005 Oliver Stieber
|
2008-10-18 19:21:20 +02:00
|
|
|
* Copyright 2007-2008 Stefan Dösinger for CodeWeavers
|
2010-11-18 20:50:40 +01:00
|
|
|
* Copyright 2009-2010 Henri Verbeet for CodeWeavers.
|
2005-03-03 14:57:15 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2005-03-03 14:57:15 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "wined3d_private.h"
|
|
|
|
|
2010-03-03 22:45:34 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d);
|
|
|
|
|
2010-03-30 11:24:43 +02:00
|
|
|
BOOL wined3d_event_query_supported(const struct wined3d_gl_info *gl_info)
|
2010-03-03 23:48:50 +01:00
|
|
|
{
|
2010-03-30 11:24:43 +02:00
|
|
|
return gl_info->supported[ARB_SYNC] || gl_info->supported[NV_FENCE] || gl_info->supported[APPLE_FENCE];
|
2010-03-03 23:48:50 +01:00
|
|
|
}
|
|
|
|
|
2010-03-21 13:26:36 +01:00
|
|
|
void wined3d_event_query_destroy(struct wined3d_event_query *query)
|
2010-03-03 23:48:50 +01:00
|
|
|
{
|
|
|
|
if (query->context) context_free_event_query(query);
|
|
|
|
HeapFree(GetProcessHeap(), 0, query);
|
|
|
|
}
|
|
|
|
|
2010-03-21 13:26:36 +01:00
|
|
|
enum wined3d_event_query_result wined3d_event_query_test(struct wined3d_event_query *query, IWineD3DDeviceImpl *device)
|
2010-03-03 22:45:34 +01:00
|
|
|
{
|
|
|
|
struct wined3d_context *context;
|
|
|
|
const struct wined3d_gl_info *gl_info;
|
|
|
|
enum wined3d_event_query_result ret;
|
|
|
|
BOOL fence_result;
|
|
|
|
|
|
|
|
TRACE("(%p) : device %p\n", query, device);
|
|
|
|
|
2010-09-14 13:38:39 +02:00
|
|
|
if (!query->context)
|
2010-03-03 22:45:34 +01:00
|
|
|
{
|
|
|
|
TRACE("Query not started\n");
|
|
|
|
return WINED3D_EVENT_QUERY_NOT_STARTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!query->context->gl_info->supported[ARB_SYNC] && query->context->tid != GetCurrentThreadId())
|
|
|
|
{
|
|
|
|
WARN("Event query tested from wrong thread\n");
|
|
|
|
return WINED3D_EVENT_QUERY_WRONG_THREAD;
|
|
|
|
}
|
|
|
|
|
2010-05-03 22:03:28 +02:00
|
|
|
context = context_acquire(device, query->context->current_rt);
|
2010-03-03 22:45:34 +01:00
|
|
|
gl_info = context->gl_info;
|
|
|
|
|
|
|
|
ENTER_GL();
|
|
|
|
|
|
|
|
if (gl_info->supported[ARB_SYNC])
|
|
|
|
{
|
|
|
|
GLenum gl_ret = GL_EXTCALL(glClientWaitSync(query->object.sync, 0, 0));
|
|
|
|
checkGLcall("glClientWaitSync");
|
|
|
|
|
|
|
|
switch (gl_ret)
|
|
|
|
{
|
|
|
|
case GL_ALREADY_SIGNALED:
|
|
|
|
case GL_CONDITION_SATISFIED:
|
|
|
|
ret = WINED3D_EVENT_QUERY_OK;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GL_TIMEOUT_EXPIRED:
|
|
|
|
ret = WINED3D_EVENT_QUERY_WAITING;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GL_WAIT_FAILED:
|
|
|
|
default:
|
|
|
|
ERR("glClientWaitSync returned %#x.\n", gl_ret);
|
|
|
|
ret = WINED3D_EVENT_QUERY_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (gl_info->supported[APPLE_FENCE])
|
|
|
|
{
|
|
|
|
fence_result = GL_EXTCALL(glTestFenceAPPLE(query->object.id));
|
|
|
|
checkGLcall("glTestFenceAPPLE");
|
|
|
|
if (fence_result) ret = WINED3D_EVENT_QUERY_OK;
|
|
|
|
else ret = WINED3D_EVENT_QUERY_WAITING;
|
|
|
|
}
|
|
|
|
else if (gl_info->supported[NV_FENCE])
|
|
|
|
{
|
|
|
|
fence_result = GL_EXTCALL(glTestFenceNV(query->object.id));
|
|
|
|
checkGLcall("glTestFenceNV");
|
|
|
|
if (fence_result) ret = WINED3D_EVENT_QUERY_OK;
|
|
|
|
else ret = WINED3D_EVENT_QUERY_WAITING;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-03-03 23:48:50 +01:00
|
|
|
ERR("Event query created despite lack of GL support\n");
|
|
|
|
ret = WINED3D_EVENT_QUERY_ERROR;
|
2010-03-03 22:45:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
LEAVE_GL();
|
|
|
|
|
|
|
|
context_release(context);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2010-03-21 13:26:36 +01:00
|
|
|
enum wined3d_event_query_result wined3d_event_query_finish(struct wined3d_event_query *query, IWineD3DDeviceImpl *device)
|
|
|
|
{
|
|
|
|
struct wined3d_context *context;
|
|
|
|
const struct wined3d_gl_info *gl_info;
|
|
|
|
enum wined3d_event_query_result ret;
|
|
|
|
|
|
|
|
TRACE("(%p)\n", query);
|
|
|
|
|
|
|
|
if (!query->context)
|
|
|
|
{
|
|
|
|
TRACE("Query not started\n");
|
|
|
|
return WINED3D_EVENT_QUERY_NOT_STARTED;
|
|
|
|
}
|
|
|
|
gl_info = query->context->gl_info;
|
|
|
|
|
|
|
|
if (query->context->tid != GetCurrentThreadId() && !gl_info->supported[ARB_SYNC])
|
|
|
|
{
|
|
|
|
/* A glFinish does not reliably wait for draws in other contexts. The caller has
|
|
|
|
* to find its own way to cope with the thread switch
|
|
|
|
*/
|
|
|
|
WARN("Event query finished from wrong thread\n");
|
|
|
|
return WINED3D_EVENT_QUERY_WRONG_THREAD;
|
|
|
|
}
|
|
|
|
|
2010-05-03 22:03:28 +02:00
|
|
|
context = context_acquire(device, query->context->current_rt);
|
2010-03-21 13:26:36 +01:00
|
|
|
|
|
|
|
ENTER_GL();
|
|
|
|
if (gl_info->supported[ARB_SYNC])
|
|
|
|
{
|
|
|
|
GLenum gl_ret = GL_EXTCALL(glClientWaitSync(query->object.sync, 0, ~(GLuint64)0));
|
|
|
|
checkGLcall("glClientWaitSync");
|
|
|
|
|
|
|
|
switch (gl_ret)
|
|
|
|
{
|
|
|
|
case GL_ALREADY_SIGNALED:
|
|
|
|
case GL_CONDITION_SATISFIED:
|
|
|
|
ret = WINED3D_EVENT_QUERY_OK;
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* We don't expect a timeout for a ~584 year wait */
|
|
|
|
default:
|
|
|
|
ERR("glClientWaitSync returned %#x.\n", gl_ret);
|
|
|
|
ret = WINED3D_EVENT_QUERY_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (context->gl_info->supported[APPLE_FENCE])
|
|
|
|
{
|
|
|
|
GL_EXTCALL(glFinishFenceAPPLE(query->object.id));
|
|
|
|
checkGLcall("glFinishFenceAPPLE");
|
|
|
|
ret = WINED3D_EVENT_QUERY_OK;
|
|
|
|
}
|
|
|
|
else if (context->gl_info->supported[NV_FENCE])
|
|
|
|
{
|
|
|
|
GL_EXTCALL(glFinishFenceNV(query->object.id));
|
|
|
|
checkGLcall("glFinishFenceNV");
|
|
|
|
ret = WINED3D_EVENT_QUERY_OK;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ERR("Event query created without GL support\n");
|
|
|
|
ret = WINED3D_EVENT_QUERY_ERROR;
|
|
|
|
}
|
|
|
|
LEAVE_GL();
|
|
|
|
|
|
|
|
context_release(context);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void wined3d_event_query_issue(struct wined3d_event_query *query, IWineD3DDeviceImpl *device)
|
2010-03-03 23:18:37 +01:00
|
|
|
{
|
|
|
|
const struct wined3d_gl_info *gl_info;
|
|
|
|
struct wined3d_context *context;
|
|
|
|
|
|
|
|
if (query->context)
|
|
|
|
{
|
|
|
|
if (!query->context->gl_info->supported[ARB_SYNC] && query->context->tid != GetCurrentThreadId())
|
|
|
|
{
|
|
|
|
context_free_event_query(query);
|
2010-05-03 22:03:28 +02:00
|
|
|
context = context_acquire(device, NULL);
|
2010-03-03 23:18:37 +01:00
|
|
|
context_alloc_event_query(context, query);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-05-03 22:03:28 +02:00
|
|
|
context = context_acquire(device, query->context->current_rt);
|
2010-03-03 23:18:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-05-03 22:03:28 +02:00
|
|
|
context = context_acquire(device, NULL);
|
2010-03-03 23:18:37 +01:00
|
|
|
context_alloc_event_query(context, query);
|
|
|
|
}
|
|
|
|
|
|
|
|
gl_info = context->gl_info;
|
|
|
|
|
|
|
|
ENTER_GL();
|
|
|
|
|
|
|
|
if (gl_info->supported[ARB_SYNC])
|
|
|
|
{
|
|
|
|
if (query->object.sync) GL_EXTCALL(glDeleteSync(query->object.sync));
|
|
|
|
checkGLcall("glDeleteSync");
|
|
|
|
query->object.sync = GL_EXTCALL(glFenceSync(GL_SYNC_GPU_COMMANDS_COMPLETE, 0));
|
|
|
|
checkGLcall("glFenceSync");
|
|
|
|
}
|
|
|
|
else if (gl_info->supported[APPLE_FENCE])
|
|
|
|
{
|
|
|
|
GL_EXTCALL(glSetFenceAPPLE(query->object.id));
|
|
|
|
checkGLcall("glSetFenceAPPLE");
|
|
|
|
}
|
|
|
|
else if (gl_info->supported[NV_FENCE])
|
|
|
|
{
|
|
|
|
GL_EXTCALL(glSetFenceNV(query->object.id, GL_ALL_COMPLETED_NV));
|
|
|
|
checkGLcall("glSetFenceNV");
|
|
|
|
}
|
|
|
|
|
|
|
|
LEAVE_GL();
|
|
|
|
|
|
|
|
context_release(context);
|
|
|
|
}
|
|
|
|
|
2010-08-31 18:41:38 +02:00
|
|
|
static HRESULT WINAPI IWineD3DQueryImpl_QueryInterface(IWineD3DQuery *iface, REFIID riid, void **object)
|
2005-03-03 14:57:15 +01:00
|
|
|
{
|
2010-08-31 18:41:38 +02:00
|
|
|
TRACE("iface %p, riid %s, object %p.\n", iface, debugstr_guid(riid), object);
|
|
|
|
|
|
|
|
if (IsEqualGUID(riid, &IID_IWineD3DQuery)
|
|
|
|
|| IsEqualGUID(riid, &IID_IUnknown))
|
|
|
|
{
|
2005-03-03 14:57:15 +01:00
|
|
|
IUnknown_AddRef(iface);
|
2010-08-31 18:41:38 +02:00
|
|
|
*object = iface;
|
2006-04-25 23:59:12 +02:00
|
|
|
return S_OK;
|
2005-03-03 14:57:15 +01:00
|
|
|
}
|
2010-08-31 18:41:38 +02:00
|
|
|
|
|
|
|
WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(riid));
|
|
|
|
|
|
|
|
*object = NULL;
|
2005-03-03 14:57:15 +01:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
2006-06-10 13:15:32 +02:00
|
|
|
static ULONG WINAPI IWineD3DQueryImpl_AddRef(IWineD3DQuery *iface) {
|
2005-03-03 14:57:15 +01:00
|
|
|
IWineD3DQueryImpl *This = (IWineD3DQueryImpl *)iface;
|
2006-10-01 05:20:10 +02:00
|
|
|
TRACE("(%p) : AddRef increasing from %d\n", This, This->ref);
|
2005-03-03 14:57:15 +01:00
|
|
|
return InterlockedIncrement(&This->ref);
|
|
|
|
}
|
|
|
|
|
2006-06-10 13:15:32 +02:00
|
|
|
static ULONG WINAPI IWineD3DQueryImpl_Release(IWineD3DQuery *iface) {
|
2005-03-03 14:57:15 +01:00
|
|
|
IWineD3DQueryImpl *This = (IWineD3DQueryImpl *)iface;
|
|
|
|
ULONG ref;
|
2006-10-01 05:20:10 +02:00
|
|
|
TRACE("(%p) : Releasing from %d\n", This, This->ref);
|
2005-03-03 14:57:15 +01:00
|
|
|
ref = InterlockedDecrement(&This->ref);
|
2010-09-14 13:38:39 +02:00
|
|
|
|
|
|
|
if (!ref)
|
|
|
|
{
|
2009-01-07 09:00:55 +01:00
|
|
|
/* Queries are specific to the GL context that created them. Not
|
|
|
|
* deleting the query will obviously leak it, but that's still better
|
|
|
|
* than potentially deleting a different query with the same id in this
|
|
|
|
* context, and (still) leaking the actual query. */
|
2009-07-01 09:46:17 +02:00
|
|
|
if (This->type == WINED3DQUERYTYPE_EVENT)
|
|
|
|
{
|
2009-07-24 10:44:14 +02:00
|
|
|
struct wined3d_event_query *query = This->extendedData;
|
2010-03-03 23:48:50 +01:00
|
|
|
if (query) wined3d_event_query_destroy(query);
|
2009-07-01 09:46:17 +02:00
|
|
|
}
|
2009-07-24 10:44:13 +02:00
|
|
|
else if (This->type == WINED3DQUERYTYPE_OCCLUSION)
|
2009-07-01 09:46:17 +02:00
|
|
|
{
|
2009-07-24 10:44:13 +02:00
|
|
|
struct wined3d_occlusion_query *query = This->extendedData;
|
2009-07-01 09:46:17 +02:00
|
|
|
|
2009-07-24 10:44:13 +02:00
|
|
|
if (query->context) context_free_occlusion_query(query);
|
2010-03-03 23:48:50 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, This->extendedData);
|
2007-03-01 00:34:33 +01:00
|
|
|
}
|
|
|
|
|
2005-03-03 14:57:15 +01:00
|
|
|
HeapFree(GetProcessHeap(), 0, This);
|
|
|
|
}
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
2010-11-18 20:50:40 +01:00
|
|
|
static HRESULT WINAPI IWineD3DOcclusionQueryImpl_GetData(IWineD3DQuery *iface,
|
|
|
|
void *pData, DWORD dwSize, DWORD flags)
|
|
|
|
{
|
2008-02-28 21:03:41 +01:00
|
|
|
IWineD3DQueryImpl *This = (IWineD3DQueryImpl *) iface;
|
2009-07-24 10:44:13 +02:00
|
|
|
struct wined3d_occlusion_query *query = This->extendedData;
|
2009-12-09 20:32:08 +01:00
|
|
|
IWineD3DDeviceImpl *device = This->device;
|
2009-10-29 10:37:11 +01:00
|
|
|
const struct wined3d_gl_info *gl_info = &device->adapter->gl_info;
|
2009-10-28 11:00:11 +01:00
|
|
|
struct wined3d_context *context;
|
2008-02-28 21:03:41 +01:00
|
|
|
DWORD* data = pData;
|
2009-01-07 09:00:55 +01:00
|
|
|
GLuint available;
|
|
|
|
GLuint samples;
|
2008-02-28 21:03:41 +01:00
|
|
|
HRESULT res;
|
2009-01-07 09:00:55 +01:00
|
|
|
|
2010-11-18 20:50:40 +01:00
|
|
|
TRACE("(%p) : type D3DQUERY_OCCLUSION, pData %p, dwSize %#x, flags %#x.\n", This, pData, dwSize, flags);
|
2008-02-28 21:03:41 +01:00
|
|
|
|
2009-07-24 10:44:13 +02:00
|
|
|
if (!query->context) This->state = QUERY_CREATED;
|
|
|
|
|
2009-01-07 09:00:55 +01:00
|
|
|
if (This->state == QUERY_CREATED)
|
|
|
|
{
|
2008-02-28 21:03:41 +01:00
|
|
|
/* D3D allows GetData on a new query, OpenGL doesn't. So just invent the data ourselves */
|
|
|
|
TRACE("Query wasn't yet started, returning S_OK\n");
|
|
|
|
if(data) *data = 0;
|
2009-01-07 09:00:55 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (This->state == QUERY_BUILDING)
|
|
|
|
{
|
2008-02-28 21:03:41 +01:00
|
|
|
/* Msdn says this returns an error, but our tests show that S_FALSE is returned */
|
|
|
|
TRACE("Query is building, returning S_FALSE\n");
|
2009-01-07 09:00:55 +01:00
|
|
|
return S_FALSE;
|
2009-01-07 09:00:55 +01:00
|
|
|
}
|
2009-01-07 09:00:55 +01:00
|
|
|
|
2009-10-29 10:37:11 +01:00
|
|
|
if (!gl_info->supported[ARB_OCCLUSION_QUERY])
|
2009-01-07 09:00:55 +01:00
|
|
|
{
|
|
|
|
WARN("(%p) : Occlusion queries not supported. Returning 1.\n", This);
|
2008-02-28 21:03:41 +01:00
|
|
|
*data = 1;
|
2009-01-07 09:00:55 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2009-07-24 10:44:13 +02:00
|
|
|
if (query->context->tid != GetCurrentThreadId())
|
2009-01-07 09:00:55 +01:00
|
|
|
{
|
2009-07-01 09:46:17 +02:00
|
|
|
FIXME("%p Wrong thread, returning 1.\n", This);
|
2009-01-07 09:00:55 +01:00
|
|
|
*data = 1;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2010-05-03 22:03:28 +02:00
|
|
|
context = context_acquire(This->device, query->context->current_rt);
|
2009-07-01 09:46:17 +02:00
|
|
|
|
2009-01-07 09:00:55 +01:00
|
|
|
ENTER_GL();
|
|
|
|
|
2009-07-24 10:44:13 +02:00
|
|
|
GL_EXTCALL(glGetQueryObjectuivARB(query->id, GL_QUERY_RESULT_AVAILABLE_ARB, &available));
|
2009-07-07 11:08:02 +02:00
|
|
|
checkGLcall("glGetQueryObjectuivARB(GL_QUERY_RESULT_AVAILABLE)");
|
2009-01-07 09:00:55 +01:00
|
|
|
TRACE("(%p) : available %d.\n", This, available);
|
|
|
|
|
|
|
|
if (available)
|
|
|
|
{
|
|
|
|
if (data)
|
|
|
|
{
|
2009-07-24 10:44:13 +02:00
|
|
|
GL_EXTCALL(glGetQueryObjectuivARB(query->id, GL_QUERY_RESULT_ARB, &samples));
|
2009-07-07 11:08:02 +02:00
|
|
|
checkGLcall("glGetQueryObjectuivARB(GL_QUERY_RESULT)");
|
2009-01-07 09:00:55 +01:00
|
|
|
TRACE("(%p) : Returning %d samples.\n", This, samples);
|
|
|
|
*data = samples;
|
|
|
|
}
|
2008-02-28 21:03:41 +01:00
|
|
|
res = S_OK;
|
|
|
|
}
|
2009-01-07 09:00:55 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
res = S_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
LEAVE_GL();
|
|
|
|
|
2009-10-28 11:00:11 +01:00
|
|
|
context_release(context);
|
|
|
|
|
2008-02-28 21:03:41 +01:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2010-11-18 20:50:40 +01:00
|
|
|
static HRESULT WINAPI IWineD3DEventQueryImpl_GetData(IWineD3DQuery *iface,
|
|
|
|
void *pData, DWORD dwSize, DWORD flags)
|
|
|
|
{
|
2008-02-28 21:02:58 +01:00
|
|
|
IWineD3DQueryImpl *This = (IWineD3DQueryImpl *) iface;
|
2009-07-24 10:44:14 +02:00
|
|
|
struct wined3d_event_query *query = This->extendedData;
|
2009-10-28 11:00:11 +01:00
|
|
|
BOOL *data = pData;
|
2010-03-03 22:45:34 +01:00
|
|
|
enum wined3d_event_query_result ret;
|
2009-07-01 09:46:17 +02:00
|
|
|
|
2010-11-18 20:50:40 +01:00
|
|
|
TRACE("(%p) : type D3DQUERY_EVENT, pData %p, dwSize %#x, flags %#x.\n", This, pData, dwSize, flags);
|
2008-02-28 21:02:58 +01:00
|
|
|
|
2009-07-01 09:46:17 +02:00
|
|
|
if (!pData || !dwSize) return S_OK;
|
2010-03-03 23:48:50 +01:00
|
|
|
if (!query)
|
|
|
|
{
|
|
|
|
WARN("(%p): Event query not supported by GL, reporting GPU idle\n", This);
|
|
|
|
*data = TRUE;
|
|
|
|
return S_OK;
|
|
|
|
}
|
2009-06-26 10:07:08 +02:00
|
|
|
|
2010-03-03 22:45:34 +01:00
|
|
|
ret = wined3d_event_query_test(query, This->device);
|
|
|
|
switch(ret)
|
2009-08-11 09:42:12 +02:00
|
|
|
{
|
2010-03-03 22:45:34 +01:00
|
|
|
case WINED3D_EVENT_QUERY_OK:
|
|
|
|
case WINED3D_EVENT_QUERY_NOT_STARTED:
|
|
|
|
*data = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WINED3D_EVENT_QUERY_WAITING:
|
|
|
|
*data = FALSE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WINED3D_EVENT_QUERY_WRONG_THREAD:
|
|
|
|
FIXME("(%p) Wrong thread, reporting GPU idle.\n", This);
|
|
|
|
*data = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WINED3D_EVENT_QUERY_ERROR:
|
|
|
|
ERR("The GL event query failed, returning D3DERR_INVALIDCALL\n");
|
|
|
|
return WINED3DERR_INVALIDCALL;
|
2009-07-01 09:46:17 +02:00
|
|
|
}
|
|
|
|
|
2008-02-28 21:02:58 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
2005-03-03 14:57:15 +01:00
|
|
|
|
2008-02-28 21:02:58 +01:00
|
|
|
static DWORD WINAPI IWineD3DEventQueryImpl_GetDataSize(IWineD3DQuery* iface){
|
|
|
|
TRACE("(%p) : type D3DQUERY_EVENT\n", iface);
|
|
|
|
|
|
|
|
return sizeof(BOOL);
|
|
|
|
}
|
2005-03-03 14:57:15 +01:00
|
|
|
|
2008-02-28 21:03:41 +01:00
|
|
|
static DWORD WINAPI IWineD3DOcclusionQueryImpl_GetDataSize(IWineD3DQuery* iface){
|
|
|
|
TRACE("(%p) : type D3DQUERY_OCCLUSION\n", iface);
|
|
|
|
|
|
|
|
return sizeof(DWORD);
|
|
|
|
}
|
|
|
|
|
2006-06-10 13:15:32 +02:00
|
|
|
static WINED3DQUERYTYPE WINAPI IWineD3DQueryImpl_GetType(IWineD3DQuery* iface){
|
2005-03-03 14:57:15 +01:00
|
|
|
IWineD3DQueryImpl *This = (IWineD3DQueryImpl *)iface;
|
|
|
|
return This->type;
|
|
|
|
}
|
|
|
|
|
2010-11-18 20:50:40 +01:00
|
|
|
static HRESULT WINAPI IWineD3DEventQueryImpl_Issue(IWineD3DQuery* iface, DWORD flags)
|
|
|
|
{
|
2008-02-28 21:02:58 +01:00
|
|
|
IWineD3DQueryImpl *This = (IWineD3DQueryImpl *)iface;
|
|
|
|
|
2010-11-18 20:50:40 +01:00
|
|
|
TRACE("(%p) : flags %#x, type D3DQUERY_EVENT\n", This, flags);
|
|
|
|
if (flags & WINED3DISSUE_END)
|
2009-07-01 09:46:17 +02:00
|
|
|
{
|
2009-07-24 10:44:14 +02:00
|
|
|
struct wined3d_event_query *query = This->extendedData;
|
2010-03-03 23:48:50 +01:00
|
|
|
|
|
|
|
/* Faked event query support */
|
|
|
|
if (!query) return WINED3D_OK;
|
|
|
|
|
2010-03-03 23:18:37 +01:00
|
|
|
wined3d_event_query_issue(query, This->device);
|
2009-07-24 10:44:14 +02:00
|
|
|
}
|
2010-11-18 20:50:40 +01:00
|
|
|
else if (flags & WINED3DISSUE_BEGIN)
|
2009-07-24 10:44:14 +02:00
|
|
|
{
|
2008-02-28 21:02:58 +01:00
|
|
|
/* Started implicitly at device creation */
|
|
|
|
ERR("Event query issued with START flag - what to do?\n");
|
|
|
|
}
|
|
|
|
|
2010-11-18 20:50:40 +01:00
|
|
|
if (flags & WINED3DISSUE_BEGIN)
|
2008-02-28 21:02:58 +01:00
|
|
|
This->state = QUERY_BUILDING;
|
2010-11-18 20:50:40 +01:00
|
|
|
else
|
2008-02-28 21:02:58 +01:00
|
|
|
This->state = QUERY_SIGNALLED;
|
|
|
|
|
|
|
|
return WINED3D_OK;
|
|
|
|
}
|
|
|
|
|
2010-11-18 20:50:40 +01:00
|
|
|
static HRESULT WINAPI IWineD3DOcclusionQueryImpl_Issue(IWineD3DQuery *iface, DWORD flags)
|
|
|
|
{
|
2005-03-03 14:57:15 +01:00
|
|
|
IWineD3DQueryImpl *This = (IWineD3DQueryImpl *)iface;
|
2009-12-09 20:32:08 +01:00
|
|
|
IWineD3DDeviceImpl *device = This->device;
|
2009-10-29 10:37:11 +01:00
|
|
|
const struct wined3d_gl_info *gl_info = &device->adapter->gl_info;
|
2006-07-25 00:51:33 +02:00
|
|
|
|
2009-10-29 10:37:11 +01:00
|
|
|
if (gl_info->supported[ARB_OCCLUSION_QUERY])
|
2009-07-01 09:46:17 +02:00
|
|
|
{
|
2009-07-24 10:44:13 +02:00
|
|
|
struct wined3d_occlusion_query *query = This->extendedData;
|
2009-08-03 08:06:51 +02:00
|
|
|
struct wined3d_context *context;
|
2008-02-28 21:03:41 +01:00
|
|
|
|
2009-07-24 10:44:13 +02:00
|
|
|
/* This is allowed according to msdn and our tests. Reset the query and restart */
|
2010-11-18 20:50:40 +01:00
|
|
|
if (flags & WINED3DISSUE_BEGIN)
|
2009-07-01 09:46:17 +02:00
|
|
|
{
|
2009-07-24 10:44:13 +02:00
|
|
|
if (This->state == QUERY_BUILDING)
|
|
|
|
{
|
|
|
|
if (query->context->tid != GetCurrentThreadId())
|
|
|
|
{
|
|
|
|
FIXME("Wrong thread, can't restart query.\n");
|
2009-06-26 10:07:08 +02:00
|
|
|
|
2009-07-24 10:44:13 +02:00
|
|
|
context_free_occlusion_query(query);
|
2010-05-03 22:03:28 +02:00
|
|
|
context = context_acquire(This->device, NULL);
|
2009-07-24 10:44:13 +02:00
|
|
|
context_alloc_occlusion_query(context, query);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-05-03 22:03:28 +02:00
|
|
|
context = context_acquire(This->device, query->context->current_rt);
|
2009-07-24 10:44:13 +02:00
|
|
|
|
|
|
|
ENTER_GL();
|
2008-02-28 21:03:41 +01:00
|
|
|
GL_EXTCALL(glEndQueryARB(GL_SAMPLES_PASSED_ARB));
|
|
|
|
checkGLcall("glEndQuery()");
|
2009-07-24 10:44:13 +02:00
|
|
|
LEAVE_GL();
|
2008-02-28 21:03:41 +01:00
|
|
|
}
|
|
|
|
}
|
2009-07-24 10:44:13 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (query->context) context_free_occlusion_query(query);
|
2010-05-03 22:03:28 +02:00
|
|
|
context = context_acquire(This->device, NULL);
|
2009-07-24 10:44:13 +02:00
|
|
|
context_alloc_occlusion_query(context, query);
|
|
|
|
}
|
|
|
|
|
|
|
|
ENTER_GL();
|
|
|
|
GL_EXTCALL(glBeginQueryARB(GL_SAMPLES_PASSED_ARB, query->id));
|
|
|
|
checkGLcall("glBeginQuery()");
|
|
|
|
LEAVE_GL();
|
2009-10-28 11:00:11 +01:00
|
|
|
|
|
|
|
context_release(context);
|
2009-07-24 10:44:13 +02:00
|
|
|
}
|
2010-11-18 20:50:40 +01:00
|
|
|
if (flags & WINED3DISSUE_END)
|
|
|
|
{
|
2009-07-24 10:44:13 +02:00
|
|
|
/* Msdn says _END on a non-building occlusion query returns an error, but
|
|
|
|
* our tests show that it returns OK. But OpenGL doesn't like it, so avoid
|
|
|
|
* generating an error
|
|
|
|
*/
|
|
|
|
if (This->state == QUERY_BUILDING)
|
|
|
|
{
|
|
|
|
if (query->context->tid != GetCurrentThreadId())
|
|
|
|
{
|
|
|
|
FIXME("Wrong thread, can't end query.\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-05-03 22:03:28 +02:00
|
|
|
context = context_acquire(This->device, query->context->current_rt);
|
2009-07-24 10:44:13 +02:00
|
|
|
|
|
|
|
ENTER_GL();
|
2008-02-28 21:03:41 +01:00
|
|
|
GL_EXTCALL(glEndQueryARB(GL_SAMPLES_PASSED_ARB));
|
|
|
|
checkGLcall("glEndQuery()");
|
2009-07-24 10:44:13 +02:00
|
|
|
LEAVE_GL();
|
2009-10-28 11:00:11 +01:00
|
|
|
|
|
|
|
context_release(context);
|
2006-07-25 00:51:33 +02:00
|
|
|
}
|
|
|
|
}
|
2008-02-28 21:03:41 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
FIXME("(%p) : Occlusion queries not supported\n", This);
|
|
|
|
}
|
2006-07-25 00:51:33 +02:00
|
|
|
|
2010-11-18 20:50:40 +01:00
|
|
|
if (flags & WINED3DISSUE_BEGIN)
|
2008-02-28 21:03:41 +01:00
|
|
|
This->state = QUERY_BUILDING;
|
2010-11-18 20:50:40 +01:00
|
|
|
else
|
2008-02-28 21:03:41 +01:00
|
|
|
This->state = QUERY_SIGNALLED;
|
2010-11-18 20:50:40 +01:00
|
|
|
|
2008-02-28 21:03:41 +01:00
|
|
|
return WINED3D_OK; /* can be WINED3DERR_INVALIDCALL. */
|
|
|
|
}
|
|
|
|
|
2010-01-17 21:31:30 +01:00
|
|
|
static const IWineD3DQueryVtbl IWineD3DEventQuery_Vtbl =
|
2008-02-28 21:02:58 +01:00
|
|
|
{
|
|
|
|
/*** IUnknown methods ***/
|
|
|
|
IWineD3DQueryImpl_QueryInterface,
|
|
|
|
IWineD3DQueryImpl_AddRef,
|
|
|
|
IWineD3DQueryImpl_Release,
|
|
|
|
/*** IWineD3Dquery methods ***/
|
|
|
|
IWineD3DEventQueryImpl_GetData,
|
|
|
|
IWineD3DEventQueryImpl_GetDataSize,
|
|
|
|
IWineD3DQueryImpl_GetType,
|
|
|
|
IWineD3DEventQueryImpl_Issue
|
|
|
|
};
|
2008-02-28 21:03:41 +01:00
|
|
|
|
2010-01-17 21:31:30 +01:00
|
|
|
static const IWineD3DQueryVtbl IWineD3DOcclusionQuery_Vtbl =
|
2008-02-28 21:03:41 +01:00
|
|
|
{
|
|
|
|
/*** IUnknown methods ***/
|
|
|
|
IWineD3DQueryImpl_QueryInterface,
|
|
|
|
IWineD3DQueryImpl_AddRef,
|
|
|
|
IWineD3DQueryImpl_Release,
|
|
|
|
/*** IWineD3Dquery methods ***/
|
|
|
|
IWineD3DOcclusionQueryImpl_GetData,
|
|
|
|
IWineD3DOcclusionQueryImpl_GetDataSize,
|
|
|
|
IWineD3DQueryImpl_GetType,
|
|
|
|
IWineD3DOcclusionQueryImpl_Issue
|
|
|
|
};
|
2010-01-17 21:31:30 +01:00
|
|
|
|
2010-08-31 18:41:38 +02:00
|
|
|
HRESULT query_init(IWineD3DQueryImpl *query, IWineD3DDeviceImpl *device, WINED3DQUERYTYPE type)
|
2010-01-17 21:31:30 +01:00
|
|
|
{
|
|
|
|
const struct wined3d_gl_info *gl_info = &device->adapter->gl_info;
|
|
|
|
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case WINED3DQUERYTYPE_OCCLUSION:
|
|
|
|
TRACE("Occlusion query.\n");
|
|
|
|
if (!gl_info->supported[ARB_OCCLUSION_QUERY])
|
|
|
|
{
|
2010-01-21 10:38:31 +01:00
|
|
|
WARN("Unsupported in local OpenGL implementation: ARB_OCCLUSION_QUERY.\n");
|
2010-01-17 21:31:30 +01:00
|
|
|
return WINED3DERR_NOTAVAILABLE;
|
|
|
|
}
|
|
|
|
query->lpVtbl = &IWineD3DOcclusionQuery_Vtbl;
|
|
|
|
query->extendedData = HeapAlloc(GetProcessHeap(), 0, sizeof(struct wined3d_occlusion_query));
|
|
|
|
if (!query->extendedData)
|
|
|
|
{
|
|
|
|
ERR("Failed to allocate occlusion query extended data.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
((struct wined3d_occlusion_query *)query->extendedData)->context = NULL;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WINED3DQUERYTYPE_EVENT:
|
|
|
|
TRACE("Event query.\n");
|
2010-03-30 11:24:43 +02:00
|
|
|
if (!wined3d_event_query_supported(gl_info))
|
2010-01-17 21:31:30 +01:00
|
|
|
{
|
|
|
|
/* Half-Life 2 needs this query. It does not render the main
|
|
|
|
* menu correctly otherwise. Pretend to support it, faking
|
|
|
|
* this query does not do much harm except potentially
|
|
|
|
* lowering performance. */
|
|
|
|
FIXME("Event query: Unimplemented, but pretending to be supported.\n");
|
|
|
|
}
|
2010-03-30 11:24:43 +02:00
|
|
|
query->lpVtbl = &IWineD3DEventQuery_Vtbl;
|
|
|
|
query->extendedData = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(struct wined3d_event_query));
|
|
|
|
if (!query->extendedData)
|
2010-01-17 21:31:30 +01:00
|
|
|
{
|
2010-03-30 11:24:43 +02:00
|
|
|
ERR("Failed to allocate event query memory.\n");
|
|
|
|
return E_OUTOFMEMORY;
|
2010-01-17 21:31:30 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case WINED3DQUERYTYPE_VCACHE:
|
|
|
|
case WINED3DQUERYTYPE_RESOURCEMANAGER:
|
|
|
|
case WINED3DQUERYTYPE_VERTEXSTATS:
|
|
|
|
case WINED3DQUERYTYPE_TIMESTAMP:
|
|
|
|
case WINED3DQUERYTYPE_TIMESTAMPDISJOINT:
|
|
|
|
case WINED3DQUERYTYPE_TIMESTAMPFREQ:
|
|
|
|
case WINED3DQUERYTYPE_PIPELINETIMINGS:
|
|
|
|
case WINED3DQUERYTYPE_INTERFACETIMINGS:
|
|
|
|
case WINED3DQUERYTYPE_VERTEXTIMINGS:
|
|
|
|
case WINED3DQUERYTYPE_PIXELTIMINGS:
|
|
|
|
case WINED3DQUERYTYPE_BANDWIDTHTIMINGS:
|
|
|
|
case WINED3DQUERYTYPE_CACHEUTILIZATION:
|
|
|
|
default:
|
|
|
|
FIXME("Unhandled query type %#x.\n", type);
|
|
|
|
return WINED3DERR_NOTAVAILABLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
query->type = type;
|
|
|
|
query->state = QUERY_CREATED;
|
|
|
|
query->device = device;
|
|
|
|
query->ref = 1;
|
|
|
|
|
|
|
|
return WINED3D_OK;
|
|
|
|
}
|