summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/i965/brw_state_upload.c
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2009-11-02 08:48:26 +0000
committerKeith Whitwell <keithw@vmware.com>2009-11-02 08:48:26 +0000
commit23c2ba828058255d8fdf3471bb924127e6c27f6c (patch)
treeee05787ef280aa5b5c56c841aa5e4ce093732c1b /src/gallium/drivers/i965/brw_state_upload.c
parent15a8ac2c9d6ed13468ef88f3f3bd3ccf4ee2fd0e (diff)
i965g: rename brw_constant_buffer to brw_curbe_buffer
Now that there are real constant buffers, try to reduce naming confusion.
Diffstat (limited to 'src/gallium/drivers/i965/brw_state_upload.c')
-rw-r--r--src/gallium/drivers/i965/brw_state_upload.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/gallium/drivers/i965/brw_state_upload.c b/src/gallium/drivers/i965/brw_state_upload.c
index eff3a40a46..4132c6ac69 100644
--- a/src/gallium/drivers/i965/brw_state_upload.c
+++ b/src/gallium/drivers/i965/brw_state_upload.c
@@ -36,12 +36,6 @@
#include "brw_batchbuffer.h"
#include "brw_debug.h"
-/* This is used to initialize brw->state.atoms[]. We could use this
- * list directly except for a single atom, brw_constant_buffer, which
- * has a .dirty value which changes according to the parameters of the
- * current fragment and vertex programs, and so cannot be a static
- * value.
- */
const struct brw_tracked_state *atoms[] =
{
&brw_check_fallback,
@@ -94,7 +88,7 @@ const struct brw_tracked_state *atoms[] =
&brw_index_buffer,
&brw_vertices,
- &brw_constant_buffer
+ &brw_curbe_buffer
};