diff options
author | Jason Ekstrand <[email protected]> | 2016-08-15 15:07:22 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-08-29 12:17:34 -0700 |
commit | a14d1b63ce74773bec34d0c2b24b7d6fc36d0330 (patch) | |
tree | 578ba143dc8217d0ce78f950c0517b6a6ccced12 /src/mesa/drivers/dri/i965/brw_context.h | |
parent | cd18bbeef342152cd1a09e2703790bd48002a6ca (diff) |
i965/blorp: Add a blorp_context struct and init/finish funcs
Signed-off-by: Jason Ekstrand <[email protected]>
Reviewed-by: Topi Pohjolainen <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_context.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_context.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_context.h b/src/mesa/drivers/dri/i965/brw_context.h index 1a4efa3cb0c..d8aa2ba47f3 100644 --- a/src/mesa/drivers/dri/i965/brw_context.h +++ b/src/mesa/drivers/dri/i965/brw_context.h @@ -41,6 +41,7 @@ #include "intel_aub.h" #include "isl/isl.h" +#include "blorp.h" #ifdef __cplusplus extern "C" { @@ -893,6 +894,8 @@ struct brw_context struct isl_device isl_dev; + struct blorp_context blorp; + GLuint NewGLState; struct { struct brw_state_flags pipelines[BRW_NUM_PIPELINES]; |