diff options
author | Brian Paul <[email protected]> | 2000-01-13 17:58:41 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-01-13 17:58:41 +0000 |
commit | 113edcc755cd6c86c7eba3929514f628d8c7c119 (patch) | |
tree | 51359e162d0f5f680df271a78a9622f9933716f4 /src/mesa/drivers/glide/fxdd.c | |
parent | 4049cd35d89ad5eb29de15705ddc4190df5e8946 (diff) |
added fxMesaContext arg to fxInitPixelTables()
Diffstat (limited to 'src/mesa/drivers/glide/fxdd.c')
-rw-r--r-- | src/mesa/drivers/glide/fxdd.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/drivers/glide/fxdd.c b/src/mesa/drivers/glide/fxdd.c index 0605ff4c476..71e11dfd14d 100644 --- a/src/mesa/drivers/glide/fxdd.c +++ b/src/mesa/drivers/glide/fxdd.c @@ -70,9 +70,11 @@ GLubyte FX_PixelToB[0x10000]; * Initialize the FX_PixelTo{RGB} arrays. * Input: bgrOrder - if TRUE, pixels are in BGR order, else RGB order. */ -void fxInitPixelTables(GLboolean bgrOrder) +void fxInitPixelTables(fxMesaContext fxMesa, GLboolean bgrOrder) { GLuint pixel; + + fxMesa->bgrOrder=bgrOrder; for (pixel = 0; pixel <= 0xffff; pixel++) { GLuint r, g, b; if (bgrOrder) { |