diff options
author | Brian Paul <[email protected]> | 2010-12-13 17:28:02 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-12-13 17:28:02 -0700 |
commit | b830b62a47dec70640062c488cbebd2c8ac487f9 (patch) | |
tree | 92519b4d5c44683aa39188e7352426f68f39da7e /src/mesa/state_tracker/st_program.h | |
parent | 43125694109b01b9d99ed73ca340fcf19b831cd5 (diff) |
st/mesa: program struct comments
Diffstat (limited to 'src/mesa/state_tracker/st_program.h')
-rw-r--r-- | src/mesa/state_tracker/st_program.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_program.h b/src/mesa/state_tracker/st_program.h index 10ac1bace59..7bb4f0709a6 100644 --- a/src/mesa/state_tracker/st_program.h +++ b/src/mesa/state_tracker/st_program.h @@ -91,6 +91,7 @@ struct st_fragment_program +/** Vertex program variant key */ struct st_vp_varient_key { struct st_context *st; /**< variants are per-context */ @@ -124,7 +125,7 @@ struct st_vp_varient /** Next in linked list */ struct st_vp_varient *next; - /** similar to that in st_vertex_program, but with information about edgeflags too */ + /** similar to that in st_vertex_program, but with edgeflags info too */ GLuint num_inputs; }; @@ -155,6 +156,7 @@ struct st_vertex_program +/** Geometry program varient key */ struct st_gp_varient_key { struct st_context *st; /**< variants are per-context */ |