diff options
author | Brian Paul <[email protected]> | 2001-03-08 22:27:41 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-03-08 22:27:41 +0000 |
commit | ca8c6a03372229ed454b941185a9480bd0e8f110 (patch) | |
tree | e1fb92eb34ab7b7f43549dbcf8281bfc99d2ccda /src/mesa/drivers/common | |
parent | 95e02a210ed339ad20b0c16284dcdcf9af2dc755 (diff) |
fixed RBGA ifdef typo
Diffstat (limited to 'src/mesa/drivers/common')
-rw-r--r-- | src/mesa/drivers/common/t_dd_vertex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/common/t_dd_vertex.h b/src/mesa/drivers/common/t_dd_vertex.h index 3f62aeeb1a7..7bc10e9457f 100644 --- a/src/mesa/drivers/common/t_dd_vertex.h +++ b/src/mesa/drivers/common/t_dd_vertex.h @@ -25,7 +25,7 @@ * Keith Whitwell <[email protected]> */ -#if (COLOR_IS_RBGA) +#ifdef COLOR_IS_RGBA typedef struct { GLubyte red; GLubyte green; |