diff options
author | Brian Paul <[email protected]> | 2003-08-31 18:52:47 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-08-31 18:52:47 +0000 |
commit | 04a81da03bef5020d863e46aa597eddf7aaac016 (patch) | |
tree | 714f54ed6a4a5b74a17194cce98047e6a60dca1a /src/mesa/main/descrip.mms | |
parent | e38a55ecb27562a52d48bf1d673803a10d8a5bce (diff) |
Moved some shared vertex/fragment program code into new program.c file.
Implemented new program_parameter_list type and functions for dealing with
named program parameters, constants and GL state references.
New state_index enum for describing GL state referenced within ARB vertex/
fragment programs. Plus, functions for fetching named GL state.
Diffstat (limited to 'src/mesa/main/descrip.mms')
-rw-r--r-- | src/mesa/main/descrip.mms | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/descrip.mms b/src/mesa/main/descrip.mms index 9cff58e8ffc..41b5fe52e2b 100644 --- a/src/mesa/main/descrip.mms +++ b/src/mesa/main/descrip.mms @@ -59,6 +59,7 @@ SOURCES =accum.c \ pixel.c \ points.c \ polygon.c \ + program.c \ rastpos.c \ state.c \ stencil.c \ @@ -116,6 +117,7 @@ occlude.obj,\ pixel.obj,\ points.obj,\ polygon.obj,\ +program.obj,\ rastpos.obj,\ state.obj,\ stencil.obj,\ @@ -187,6 +189,7 @@ occlude.obj : occlude.c pixel.obj : pixel.c points.obj : points.c polygon.obj : polygon.c +program.obj : program.c rastpos.obj : rastpos.c state.obj : state.c stencil.obj : stencil.c |