summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/r300/r300_context.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/drivers/dri/r300/r300_context.h')
-rw-r--r--src/mesa/drivers/dri/r300/r300_context.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/r300/r300_context.h b/src/mesa/drivers/dri/r300/r300_context.h
index be27659259..5863ee52f2 100644
--- a/src/mesa/drivers/dri/r300/r300_context.h
+++ b/src/mesa/drivers/dri/r300/r300_context.h
@@ -308,7 +308,13 @@ struct r300_cmdbuf {
/**
* State cache
*/
+
+struct r300_depthbuffer_state {
+ GLfloat scale;
+};
+
struct r300_state {
+ struct r300_depthbuffer_state depth;
};
@@ -321,6 +327,11 @@ struct r300_context {
struct r300_hw_state hw;
struct r300_cmdbuf cmdbuf;
struct r300_state state;
+
+ /* Vertex buffers */
+ int elt_count; /* size of the buffer for vertices */
+ int attrib_count; /* size of the buffer for vertex attributes.. Somehow it can be different ? */
+
};
#define R300_CONTEXT(ctx) ((r300ContextPtr)(ctx->DriverCtx))