summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_vs.h
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2011-12-07 03:13:50 -0800
committerKenneth Graunke <kenneth@whitecape.org>2011-12-19 16:33:10 -0800
commitd45814c925dd6c479cfd383b9b59458fc4359cf7 (patch)
tree4a980bed812e03008b8ac8eda1eb29fe81c1bf83 /src/mesa/drivers/dri/i965/brw_vs.h
parent387a3d43d11cbd3eb1bd8ce787a2c693d575300c (diff)
downloadexternal_mesa3d-d45814c925dd6c479cfd383b9b59458fc4359cf7.zip
external_mesa3d-d45814c925dd6c479cfd383b9b59458fc4359cf7.tar.gz
external_mesa3d-d45814c925dd6c479cfd383b9b59458fc4359cf7.tar.bz2
i965/vs: Add texture related data to brw_vs_prog_key.
Now that this is all factored out, it's trivial to do. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Eric Anholt <eric@anholt.net> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_vs.h')
-rw-r--r--src/mesa/drivers/dri/i965/brw_vs.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vs.h b/src/mesa/drivers/dri/i965/brw_vs.h
index 8701116..8814251 100644
--- a/src/mesa/drivers/dri/i965/brw_vs.h
+++ b/src/mesa/drivers/dri/i965/brw_vs.h
@@ -36,6 +36,7 @@
#include "brw_context.h"
#include "brw_eu.h"
+#include "brw_program.h"
#include "program/program.h"
@@ -76,6 +77,8 @@ struct brw_vs_prog_key {
GLuint copy_edgeflag:1;
GLuint point_coord_replace:8;
GLuint clamp_vertex_color:1;
+
+ struct brw_sampler_prog_key_data tex;
};