diff options
author | Brian <[email protected]> | 2007-07-24 15:38:41 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-07-24 15:38:41 -0600 |
commit | 5c2cff44d22c09e018a4b43a51cf6781ce4ca5b9 (patch) | |
tree | 7fff689f4f2d67ba694f5bfdd023e901ec4653be /src/mesa | |
parent | 6a235d3fe5ccaa8cd0d4a2f3356c1513006dadcb (diff) |
added PROGRAM_UNIFORM to map_register_file()
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/pipe/tgsi/mesa/mesa_to_tgsi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/pipe/tgsi/mesa/mesa_to_tgsi.c b/src/mesa/pipe/tgsi/mesa/mesa_to_tgsi.c index dc25bac4ea5..c7840919854 100644 --- a/src/mesa/pipe/tgsi/mesa/mesa_to_tgsi.c +++ b/src/mesa/pipe/tgsi/mesa/mesa_to_tgsi.c @@ -18,6 +18,7 @@ map_register_file( case PROGRAM_STATE_VAR:
//case PROGRAM_NAMED_PARAM:
case PROGRAM_CONSTANT:
+ case PROGRAM_UNIFORM:
return TGSI_FILE_CONSTANT;
case PROGRAM_INPUT:
return TGSI_FILE_INPUT;
|