Brian Paul
2ca741ad4b
added a few extension #ifdef tests
19年前
Brian Paul
5e2e96b6f0
Added a check_context_limits() function that checks that the ctx->Const.*
fields are legal. May catch some driver development bugs.
Called the first time a context is bound.
19年前
Brian Paul
c8ea111166
usage() function
19年前
Brian Paul
20215ecc7d
remove some unused macros
19年前
Brian Paul
d77a165eac
s/GLbyte/GLubyte/
19年前
Brian Paul
ed875a4cb3
fix typo, remove dead code
19年前
Brian Paul
ad7805dfee
Expanded output with -l option: vertex/fragment program and vertex/fragment
shader limits.
Misc sync-ups with x.org copy of glxinfo.
19年前
Dave Airlie
f1dbacc6ad
the r300 should only use 8 until Mesa can deal with this
19年前
Dave Airlie
5d7ab75b02
this should use the configured number not the MAX, this has no effect until
the core mesa swrast number is fixed, just spotted this on the way past
19年前
Brian Paul
88cf5aa783
In __glXPushArrayState() we weren't pushing the index field.
But later, in __glXPopArrayState(), we were using that field to set
the active_texture_unit. The value was garbage and could lead to
things blowing up.
See bug 6863.
19年前
Brian Paul
fa489dd043
simplify image setup code, added LOD Bias control (l/L keys)
19年前
Brian Paul
aecd02b391
simple texture compression test
19年前
Brian Paul
932c2fc291
new test image - Delicate Arch, Utah
19年前
Brian Paul
bb2dd388d0
Test program for exercising GL_TEXTURE_BASE_LEVEL and GL_TEXTURE_MAX_LEVEL.
19年前
Brian Paul
1e7d84e258
move check for event.xbutton.button <= GLUT_MAX_MENUS (see sf bug 1484284)
19年前
Brian Paul
700359ca5a
check if button >= GLUT_MAX_MENUS in glutAttacheMenu()
19年前
Keith Whitwell
adc0490420
Clean up previous change slightly
19年前
Keith Whitwell
452be7e7ef
Use a (much!) larger executable memory heap so that the glsl x86
allocations succeed. I'm not sure this is really necessary...
19年前
Brian Paul
2b3aab0717
check event button against GLUT_MAX_MENUS (bug 1484284)
19年前
Brian Paul
ab13ec10eb
16/32-bit chan fixes, texture compression fixes
19年前
Brian Paul
791e7b385a
When error-checking 'unit' against num_texture_units, need to use >=, not >.
See bug 6863.
19年前
Brian Paul
008ed1df83
Add a new 'all' parameter to _mesa_get_compressed_formats() to indicate whether
all formats or just those without restrictions/limitations should be returned.
We want all when validating the internalFormat parameter to
glCompressedTexImage2D but only want unrestricted formats when handling the
GL_COMPRESSED_TEXTURE_FORMATS query.
19年前
Brian Paul
5e4c39dc0e
use _mesa_compressed_texture_size() for GL_TEXTURE_COMPRESSED_IMAGE_SIZE query
19年前
Brian Paul
a546769733
two more texture compression fixes
19年前
Brian Paul
c3c19be8e0
More updates for texture compression.
Added _mesa_compressed_texture_size_glenum() for validating the imageSize
parameter to glCompressedTex[Sub]Image1/2/3() which does _not_ call
ctx->Driver.CompressedTextureSize() - since that could return a padded size.
19年前
Brian Paul
5999c5b620
Fix a number of texture compression issues.
Pass the MESA_FORMAT_* token to the _mesa_compressed_row_stride(),
_mesa_compressed_texture_size() and _mesa_compressed_image_address()
functions since we want to use the driver-chosen format, not the user's
internalFormat hint.
Consolidate code related to choosing the texture format in texstoree.c
19年前
Brian Paul
c93c18abf1
fix warning
19年前
Keith Whitwell
71b2504e03
updates to dri drivers for recent stencil changes
19年前
Brian Paul
960973b2ec
added CHAN_BITS != 8 test
19年前
Brian Paul
85bc17495b
misc clean-ups
19年前
Brian Paul
ca8b235188
minor clean-ups around DepthScale/Bias
19年前
Brian Paul
8a1848bf99
restore -O flag (bug 6814)
19年前
Brian Paul
0c7cbf0a7c
Check for overflow when converting floating pt Z values to 32-bit GLuint.
19年前
Brian Paul
efbf170cfb
updated GLX_EXT_texture_from_pixmap tokens (Dave Reveman)
19年前
Brian Paul
9b20b68af1
check for float->uint overflow in _mesa_unpack_depth_span()
19年前
Keith Whitwell
6717a7aca0
Define VERT_RESULT_EDGE
19年前
Dave Airlie
86740f1593
remove temporary code from keithw, this in theory isn't used at the moment
anyways unless INTEL_BATCH is turned on
19年前
Dave Airlie
2364d9abd3
Fix i915 driver after stencil changes in Mesa 6.5
19年前
Keith Whitwell
ab377ce414
Release temporary
19年前
Ian Romanick
6e2ab82f5c
Fix some silly spelling errors.
19年前
Dave Airlie
ee251d4313
remove some unneeded includes
19年前
David Reveman
bea7fe57c1
Update to final EXT_tfp tokens
19年前
Dave Airlie
698b04c735
move the pkg config flags for libdrm to the bottom
19年前
Adam Jackson
0157624557
Update function signatures for EXT_tfp entrypoints.
19年前
Brian Paul
ae7f22f1ef
new, faster version of __gluInvertMatrixd(), bug 6748
19年前
Jeremy Kolb
0174d894ef
Bumped support for xcb 0.9
19年前
Tilman Sauerbeck
c5b3343e65
added a trailing newline to pacify gcc
19年前
Tilman Sauerbeck
9ecd280f33
fptest1 requires GL_NV_fragment_program
19年前
Brian Paul
6a769d97e3
fix second memory leak (bug 5557)
19年前
Brian Paul
49a80ca2bc
fix first memory leak (bug 5557)
19年前