diff options
author | Ian Romanick <[email protected]> | 2010-02-10 11:43:02 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2010-02-10 11:43:02 -0800 |
commit | 96728bb4f3e078c190da066868dede611685f6aa (patch) | |
tree | 8decba80faf0a3fb504e83a65812b31f859d946c /src/mesa/drivers/dri/sis | |
parent | 6bd9da01eacf9d100dfb0a9529700aa894a23d24 (diff) |
dri: Fix copy-and-paste brain damage in previous commit
A number of places in 3cce4a1e10361458630511543b7a8a6438544775 use
TRUE instead of GL_TRUE. This causes build failures in all of the
drivers that I don't typically build. Win.
Reported by sungami on IRC.
Signed-off-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/sis')
-rw-r--r-- | src/mesa/drivers/dri/sis/sis_screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/sis/sis_screen.c b/src/mesa/drivers/dri/sis/sis_screen.c index 0b985417322..80fb455ec75 100644 --- a/src/mesa/drivers/dri/sis/sis_screen.c +++ b/src/mesa/drivers/dri/sis/sis_screen.c @@ -103,7 +103,7 @@ sisFillInModes(__DRIscreen *psp, int bpp) configs = driCreateConfigs(fb_format, fb_type, depth_bits_array, stencil_bits_array, depth_buffer_factor, back_buffer_modes, back_buffer_factor, - msaa_samples_array, 1, TRUE); + msaa_samples_array, 1, GL_TRUE); if (configs == NULL) { fprintf(stderr, "[%s:%u] Error creating FBConfig!\n", __func__, __LINE__); return NULL; |