diff options
author | Brian Paul <[email protected]> | 2011-08-04 16:00:06 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-08-04 16:00:06 -0600 |
commit | 324857599b2a4735c86e54da9a1776c034dadf72 (patch) | |
tree | 6cffb02fbd750c4cacc29bb2780a7ce084d9cbcc /src/mesa/program/program_parser.h | |
parent | a0eb83401ef599e597b72e70c8856e1bc0f59dcc (diff) |
mesa: use gl_constant_value type in ARB program parser
Diffstat (limited to 'src/mesa/program/program_parser.h')
-rw-r--r-- | src/mesa/program/program_parser.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/program/program_parser.h b/src/mesa/program/program_parser.h index 8e5aaee95e5..5637598f3b3 100644 --- a/src/mesa/program/program_parser.h +++ b/src/mesa/program/program_parser.h @@ -23,6 +23,7 @@ #pragma once #include "main/config.h" +#include "program/prog_parameter.h" struct gl_context; @@ -96,7 +97,7 @@ struct asm_symbol { struct asm_vector { unsigned count; - float data[4]; + gl_constant_value data[4]; }; |