Merge branch 'gallium_draw_llvm'
[mesa.git] / src / gallium / drivers / r300 / r300_query.h
index 6a7646087a74bb5fbc821116591d570068673016..48876da3123947131b6e680140205da5ee6d42b9 100644 (file)
 #ifndef R300_QUERY_H
 #define R300_QUERY_H
 
-#include "r300_context.h"
-#include "r300_cs.h"
-#include "r300_reg.h"
-
 struct r300_context;
 
-struct r300_query {
-    /* The kind of query. Currently only OQ is supported. */
-    unsigned type;
-    /* Buffer object where we want our results to reside. */
-    struct pipe_buffer* buf;
-};
-
 static INLINE struct r300_query* r300_query(struct pipe_query* q)
 {
     return (struct r300_query*)q;