projects
/
platform
/
upstream
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1b445f9
)
intel: Fall back on glBitmap with fog enabled.
author
Eric Anholt
<eric@anholt.net>
Fri, 3 Jul 2009 02:21:22 +0000
(19:21 -0700)
committer
Eric Anholt
<eric@anholt.net>
Tue, 21 Jul 2009 02:10:32 +0000
(19:10 -0700)
We would have to build the program with the appropriate fog mode, and
also supply the fog coordinate if appropriate.
Bug #19413.
(cherry picked from commit
8ae02a3919bf31bd33f86208472e100eedb58497
)
src/mesa/drivers/dri/intel/intel_pixel_bitmap.c
patch
|
blob
|
history
diff --git
a/src/mesa/drivers/dri/intel/intel_pixel_bitmap.c
b/src/mesa/drivers/dri/intel/intel_pixel_bitmap.c
index
a2ccae1
..
d137aef
100644
(file)
--- a/
src/mesa/drivers/dri/intel/intel_pixel_bitmap.c
+++ b/
src/mesa/drivers/dri/intel/intel_pixel_bitmap.c
@@
-409,6
+409,12
@@
intel_texture_bitmap(GLcontext * ctx,
return GL_FALSE;
}
+ if (ctx->Fog.Enabled) {
+ if (INTEL_DEBUG & DEBUG_FALLBACKS)
+ fprintf(stderr, "glBitmap() fallback: fog\n");
+ return GL_FALSE;
+ }
+
/* Check that we can load in a texture this big. */
if (width > (1 << (ctx->Const.MaxTextureLevels - 1)) ||
height > (1 << (ctx->Const.MaxTextureLevels - 1))) {