summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/ffvertex_prog.c
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2017-11-15 23:53:04 +0100
committerMarek Olšák <[email protected]>2017-11-25 17:18:22 +0100
commit78942e7dbfd234ce080b2773b9317a61deb77788 (patch)
tree71a93812dcc3229abee231c51ec40f39aa1aeb51 /src/mesa/main/ffvertex_prog.c
parent43abaf2ad0c1c42e56e47732395cc98912a050e8 (diff)
mesa: shrink VERT_ATTRIB bitfields to 32 bits
There are only 32 vertex attribs now. Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/main/ffvertex_prog.c')
-rw-r--r--src/mesa/main/ffvertex_prog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/ffvertex_prog.c b/src/mesa/main/ffvertex_prog.c
index 85f8f24d830..44fbf4fb8a1 100644
--- a/src/mesa/main/ffvertex_prog.c
+++ b/src/mesa/main/ffvertex_prog.c
@@ -68,7 +68,7 @@ struct state_key {
unsigned texture_enabled_global:1;
unsigned fragprog_inputs_read:12;
- GLbitfield64 varying_vp_inputs;
+ GLbitfield varying_vp_inputs;
struct {
unsigned light_enabled:1;