diff options
author | Eric Anholt <[email protected]> | 2013-11-13 13:38:37 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2013-11-15 11:34:57 -0800 |
commit | 33b0455211019988fe418cca5dfac62c7902c861 (patch) | |
tree | 0d6c06f2b3ece04fb3ac2cd740ae4b72b4d91832 /src/mesa/main | |
parent | fddc17ab365370f9afb6b44fb3e2bbf68d450968 (diff) |
mesa: Remove PROGRAM_LOCAL_PARAM enum.
This has been replaced with referring to local parameters using
PROGRAM_STATE_VAR and _mesa_load_state_parameters.
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/mtypes.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 41ffdb765d5..82c915fd007 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -1941,7 +1941,6 @@ typedef enum PROGRAM_ARRAY, /**< Arrays & Matrixes */ PROGRAM_INPUT, /**< machine->Inputs[] */ PROGRAM_OUTPUT, /**< machine->Outputs[] */ - PROGRAM_LOCAL_PARAM, /**< gl_program->LocalParams[] */ PROGRAM_ENV_PARAM, /**< gl_program->Parameters[] */ PROGRAM_STATE_VAR, /**< gl_program->Parameters[] */ PROGRAM_CONSTANT, /**< gl_program->Parameters[] */ |