aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/state_trackers/nine/query9.c
diff options
context:
space:
mode:
authorAxel Davy <[email protected]>2016-10-27 22:52:53 +0200
committerAxel Davy <[email protected]>2016-12-20 23:44:22 +0100
commit6a7541a5aa5ce496cbef4d1b15dc3caeb512606c (patch)
treea48995fe41235bc7d4b9540a9f16399ec7638fde /src/gallium/state_trackers/nine/query9.c
parent0a5252d25b3e65c29c3c231cec46fed8ca7dedb0 (diff)
st/nine: Move query9 pipe calls to nine_context
This will enable to use threading for them. Signed-off-by: Axel Davy <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers/nine/query9.c')
-rw-r--r--src/gallium/state_trackers/nine/query9.c32
1 files changed, 17 insertions, 15 deletions
diff --git a/src/gallium/state_trackers/nine/query9.c b/src/gallium/state_trackers/nine/query9.c
index dd7f03d389e..6bba4a78524 100644
--- a/src/gallium/state_trackers/nine/query9.c
+++ b/src/gallium/state_trackers/nine/query9.c
@@ -21,6 +21,7 @@
* USE OR OTHER DEALINGS IN THE SOFTWARE. */
#include "device9.h"
+#include "nine_state.h"
#include "query9.h"
#include "nine_helpers.h"
#include "pipe/p_screen.h"
@@ -93,8 +94,8 @@ NineQuery9_ctor( struct NineQuery9 *This,
struct NineUnknownParams *pParams,
D3DQUERYTYPE Type )
{
- struct pipe_context *pipe = pParams->device->pipe;
- const unsigned ptype = d3dquerytype_to_pipe_query(pParams->device->screen, Type);
+ struct NineDevice9 *device = pParams->device;
+ const unsigned ptype = d3dquerytype_to_pipe_query(device->screen, Type);
HRESULT hr;
DBG("This=%p pParams=%p Type=%d\n", This, pParams, Type);
@@ -109,7 +110,7 @@ NineQuery9_ctor( struct NineQuery9 *This,
user_assert(ptype != ~0, D3DERR_INVALIDCALL);
if (ptype < PIPE_QUERY_TYPES) {
- This->pq = pipe->create_query(pipe, ptype, 0);
+ This->pq = nine_context_create_query(device, ptype);
if (!This->pq)
return E_OUTOFMEMORY;
} else {
@@ -132,14 +133,14 @@ NineQuery9_ctor( struct NineQuery9 *This,
void
NineQuery9_dtor( struct NineQuery9 *This )
{
- struct pipe_context *pipe = This->base.device->pipe;
+ struct NineDevice9 *device = This->base.device;
DBG("This=%p\n", This);
if (This->pq) {
if (This->state == NINE_QUERY_STATE_RUNNING)
- pipe->end_query(pipe, This->pq);
- pipe->destroy_query(pipe, This->pq);
+ nine_context_end_query(device, This->pq);
+ nine_context_destroy_query(device, This->pq);
}
NineUnknown_dtor(&This->base);
@@ -161,7 +162,7 @@ HRESULT NINE_WINAPI
NineQuery9_Issue( struct NineQuery9 *This,
DWORD dwIssueFlags )
{
- struct pipe_context *pipe = This->base.device->pipe;
+ struct NineDevice9 *device = This->base.device;
DBG("This=%p dwIssueFlags=%d\n", This, dwIssueFlags);
@@ -175,17 +176,16 @@ NineQuery9_Issue( struct NineQuery9 *This,
return D3D_OK;
if (dwIssueFlags == D3DISSUE_BEGIN) {
- if (This->state == NINE_QUERY_STATE_RUNNING) {
- pipe->end_query(pipe, This->pq);
- }
- pipe->begin_query(pipe, This->pq);
+ if (This->state == NINE_QUERY_STATE_RUNNING)
+ nine_context_end_query(device, This->pq);
+ nine_context_begin_query(device, This->pq);
This->state = NINE_QUERY_STATE_RUNNING;
} else {
if (This->state != NINE_QUERY_STATE_RUNNING &&
This->type != D3DQUERYTYPE_EVENT &&
This->type != D3DQUERYTYPE_TIMESTAMP)
- pipe->begin_query(pipe, This->pq);
- pipe->end_query(pipe, This->pq);
+ nine_context_begin_query(device, This->pq);
+ nine_context_end_query(device, This->pq);
This->state = NINE_QUERY_STATE_ENDED;
}
return D3D_OK;
@@ -205,7 +205,7 @@ NineQuery9_GetData( struct NineQuery9 *This,
DWORD dwSize,
DWORD dwGetDataFlags )
{
- struct pipe_context *pipe = This->base.device->pipe;
+ struct NineDevice9 *device = This->base.device;
boolean ok, wait_query_result = FALSE;
union pipe_query_result presult;
union nine_query_result nresult;
@@ -240,7 +240,9 @@ NineQuery9_GetData( struct NineQuery9 *This,
/* Note: We ignore dwGetDataFlags, because get_query_result will
* flush automatically if needed */
- ok = pipe->get_query_result(pipe, This->pq, wait_query_result, &presult);
+ ok = nine_context_get_query_result(device, This->pq,
+ !!(dwGetDataFlags & D3DGETDATA_FLUSH),
+ wait_query_result, &presult);
if (!ok) return S_FALSE;