Daniel Borca
0676fc357a
added a few sanity checks
made coding style a bit more consistent
21 years ago
Daniel Borca
885f10706a
added DD_TRI_TWOSTENCIL to ease EXT_stencil_two_side in device drivers
21 years ago
Daniel Borca
f37383c1c6
wip hack for EXT_stencil_two_side
21 years ago
Daniel Borca
79a98dea91
pop(stencil) for EXT_stencil_two_side
21 years ago
Adam Jackson
a2c2393d91
brown paper bag, r100 can't do hardware quads.
21 years ago
Adam Jackson
4d17d00bfc
make render_quads_verts call EMIT_PRIM with the arguments in the right order,
and enable hardware quads on r200 and radeon. samples/prim renders quads
correctly now.
21 years ago
Brian Paul
b271ce8eda
allow specifying image file on command line
21 years ago
Brian Paul
60909388ab
GL_(UN)PACK_SKIP_IMAGES should only be applied to 3D texture pack/unpacking
and ignored for 1D and 2D images.
Need to pass in image dimensions (1,2,3) to the _mesa_image_address() function.
This change gets propogated to some other routines.
Also added new _mesa_image_address[123]d() convenience functions.
21 years ago
Brian Paul
f00d7edd74
added shaderobjects.c
21 years ago
Roland Scheidegger
de08b0d7ed
add some chip ids
21 years ago
Brian Paul
b12594d2a0
do clipping prior to XGetImage, just in case the image would extend beyond the screen's bounds
21 years ago
Brian Paul
2a10ad16a6
use the new _mesa_clip_readpixels() routine
21 years ago
Brian Paul
e677da9e54
added a comment and assertion in _mesa_clip_drawpixels() for PixelZoom
21 years ago
Brian Paul
c55c963f4c
Removed _swrast_clip_pixelrect(). Use _mesa_clip_drawpixels() instead.
21 years ago
Brian Paul
4084e3c215
added _mesa_clip_drawpixels() and _mesa_clip_readpixels()
21 years ago
Brian Paul
4f28c9c35a
don't use ctx->Pack, use the function argument
21 years ago
Brian Paul
83889ffd97
Remove need for defining _MSC_VER when building Mesa for windows with
a non MS C compiler (MinGW). (Gregor Anich)
21 years ago
Brian Paul
5849e3d353
shorter error messages when calling a GL function without a bound context (FDO bug 1775)
21 years ago
Ian Romanick
cb7f212f93
Add EXT_stencil_wrap test that doesn't depend on stencil read-back
functioning.
21 years ago
Adam Jackson
473fe6d6bf
constify a few arrays.
21 years ago
Adam Jackson
5dd18e95d9
static char * -> static char []
21 years ago
Roland Scheidegger
d294f79190
enable GL_EXT_fog_coord. Calculate fog factors and submit them instead of fog coords (it seems the chip cannot do fog factor computation when not using fragment depth as fog coord source). vtxfmt uses fallback for now (most code present but some magic would be needed if replaying vertices is necessary later on).
21 years ago
Ian Romanick
bdd53efe83
Added MMX optimized version of the RGB565 ReadRGBASpan routine.
21 years ago
Nicolai Haehnle
2302cc1a25
No visible changes, but commit the groundwork for further experiments:
- Install custom (though inactive) pipeline
- Track depth test and culling state in hardware registers
21 years ago
Nicolai Haehnle
b187341e63
Add culling registers, sync versions of r300_reg.h
21 years ago
Brian Paul
b17a1a1826
merge the AIX and AIX64 cases
21 years ago
Keith Whitwell
cc78e40172
Nicolai's sw-clipspan-fixes.patch
21 years ago
Daniel Borca
3d2b4bfa95
cleaned up the mess a bit
21 years ago
Daniel Borca
95e2a8099b
small aesthetic correction
21 years ago
Daniel Borca
e14119f143
updated "clean" target in makefiles
21 years ago
Daniel Borca
63a2f2a977
protected against old djgpp distros
21 years ago
Daniel Borca
3c17d73c87
fixed compilation error
21 years ago
Brian Paul
051cf9df6a
fix convolution regression from revision 1.48 to 1.49
21 years ago
Brian Paul
a6c21a2af1
don't advertise GL_ARB_vertex/fragment_shader until they're done
21 years ago
Brian Paul
a196565e04
added a cast to ADD_POINTERS macro
21 years ago
Brian Paul
aea02adc7b
remove PBO work from to-do list
21 years ago
Brian Paul
753476c162
finished up PBO support
21 years ago
Brian Paul
effb720882
indentation fix
21 years ago
Brian Paul
450e917c9d
Use the _mesa_scale_and_bias_rgba() function in the convolution functions.
Minor clean-ups.
21 years ago
Brian Paul
331cc1dcba
PBO support for gl[Get]PixelMap functions
21 years ago
Brian Paul
66f3231322
PBO support for glColorTable, glColorSubTable, glGetColorTable, etc.
21 years ago
Brian Paul
bd3b40ad75
PBO support for glConvolutionFilter1D/2D, glGetConvolutionFilter, etc.
21 years ago
Brian Paul
d56928f10d
updated for PBOs
21 years ago
Brian Paul
b6f97582dd
glPolygonStipple() and glGetPolygonStipple() updated for PBOs.
21 years ago
Brian Paul
1c86813922
PBO support for glGetCompressedTexImage().
21 years ago
Brian Paul
b46712ca9d
glGetTexImage() now works with PBOs.
21 years ago
Brian Paul
c0ebc4931a
Map/Unmap PBO as needed so that the texstore routines can work with
hardware-based PBOs in the future.
21 years ago
Brian Paul
ba164c4614
Removed _swrast_validate_pbo_access().
In x11 driver, map/unmap PBO as needed in DrawPixels functions.
21 years ago
Brian Paul
355467bed8
Allow the software fallback glDrawPixels, glReadPixels, glBitmap commands to
work with real, hardware-based PBOs in the future by mapping/unmapping the
PBO buffer as needed.
21 years ago
Brian Paul
c6136ea62c
unbind GL_PIXEL_UNPACK_BUFFER_EXT before calling glBitmap!
21 years ago