diff options
author | Brian Paul <[email protected]> | 2002-01-12 03:01:23 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-01-12 03:01:23 +0000 |
commit | 3e276d43a22b043c1aa33c21ef3513a66d382dca (patch) | |
tree | 81da1ea88d9087d157d46f2e731c94dff159bf98 /src | |
parent | 166718f7499b41f5fbab2c5d69b75174ef9fe66b (diff) |
added some comments
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/mtypes.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 977b4bbf735..f593169eef9 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -1,4 +1,4 @@ -/* $Id: mtypes.h,v 1.61 2002/01/11 17:25:35 brianp Exp $ */ +/* $Id: mtypes.h,v 1.62 2002/01/12 03:01:23 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1554,9 +1554,11 @@ struct matrix_stack #define _IMAGE_NEW_TRANSFER_STATE (_NEW_PIXEL | _NEW_COLOR_MATRIX) +/* Bits for ctx->_NeedNormals */ #define NEED_NORMALS_TEXGEN 0x1 #define NEED_NORMALS_LIGHT 0x2 +/* Bits for ctx->_NeedEyeCoords */ #define NEED_EYE_TEXGEN 0x1 #define NEED_EYE_LIGHT 0x2 #define NEED_EYE_LIGHT_MODELVIEW 0x4 |