diff options
author | Brian Paul <[email protected]> | 2003-09-04 23:38:03 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-09-04 23:38:03 +0000 |
commit | 0d08399d8df6d7c52b1d85b0b54ec8d4c4fa6a28 (patch) | |
tree | 0388da1ceab869a659496edd5921e41b6d3d443b /src/mesa/main/program.h | |
parent | 0ac157ddc44e840682190c6c1fb803cb6a36a016 (diff) |
move SWIZZLE_ZERO/ONE tokens to program.h
Diffstat (limited to 'src/mesa/main/program.h')
-rw-r--r-- | src/mesa/main/program.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/main/program.h b/src/mesa/main/program.h index 02d962c7965..2445fcc9a44 100644 --- a/src/mesa/main/program.h +++ b/src/mesa/main/program.h @@ -35,6 +35,10 @@ #include "mtypes.h" +/* for GL_ARB_v_p and GL_ARB_f_p SWZ instruction */ +#define SWIZZLE_ZERO 100 +#define SWIZZLE_ONE 101 + /* * Internal functions |