summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/svga/svga_context.h
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2014-02-08 09:51:14 -0800
committerBrian Paul <[email protected]>2014-02-14 08:21:44 -0700
commit31dfefc47f9f12c49fd3cfb27ba4fe384cb60380 (patch)
tree82f74ab1a6e2b3324294f478ed8dadbc63c3482e /src/gallium/drivers/svga/svga_context.h
parent823fbfdca7165ac11eab2a7e168960f5874ebdc3 (diff)
svga: add svga_have_gb_objects/dma() functions
Reviewed-by: Thomas Hellstrom <[email protected]> Cc: "10.1" <[email protected]>
Diffstat (limited to 'src/gallium/drivers/svga/svga_context.h')
-rw-r--r--src/gallium/drivers/svga/svga_context.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/gallium/drivers/svga/svga_context.h b/src/gallium/drivers/svga/svga_context.h
index 71d4014170d..5b04bb482a1 100644
--- a/src/gallium/drivers/svga/svga_context.h
+++ b/src/gallium/drivers/svga/svga_context.h
@@ -36,8 +36,10 @@
#include "tgsi/tgsi_scan.h"
+#include "svga_screen.h"
#include "svga_state.h"
#include "svga_tgsi.h"
+#include "svga_winsys.h"
#include "svga_hw_reg.h"
#include "svga3d_shaderdefs.h"
@@ -481,5 +483,17 @@ svga_context( struct pipe_context *pipe )
}
+static INLINE boolean
+svga_have_gb_objects(const struct svga_context *svga)
+{
+ return svga_screen(svga->pipe.screen)->sws->have_gb_objects;
+}
+
+static INLINE boolean
+svga_have_gb_dma(const struct svga_context *svga)
+{
+ return svga_screen(svga->pipe.screen)->sws->have_gb_dma;
+}
+
#endif