summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2009-01-01mesa: updated comments about GLSL constantsBrian Paul1-2/+3
2008-12-31mesa: increase max texture image units and GLSL samplers to 16Brian Paul14-137/+189
The max texture coord units is still 8. All the fixed-function paths are still limited to 8 too. But GLSL shaders can use more samplers now. Note that some texcoord-related data structures are declared to be 16 elements in size rather than 8. This just simplifies the code in a few places; the extra elements aren't accessible to the user. These changes haven't been extensively tested yet, but sanity checking has been done. It should be possible to increase the max image units/samplers to 32 without doing anything special. Beyond that we'll need longer bitfields in a few places.
2008-12-31intel: Share passthrough transform setup between glBitmap and glDrawPixels.Eric Anholt5-45/+52
The DrawPixels path was missing glViewport care, so blender's toolbar icons would go to the wrong places. Bug #19118.
2008-12-31intel: Add support for glBitmap as metaops using GL calls.Eric Anholt4-0/+350
This lets us avoid software fallbacks when clients forget to turn some state off (engine demo) or just do crazy things to test conformance (OGLC). This should probably be brought into mesa generic code so other drivers can make use of it. Bug #19016.
2008-12-30mesa: fix bug in evaluation of structure fieldsBrian Paul1-3/+1
Fixes incorrect size information. See bug 19273.
2008-12-30mesa: allow variable indexing into the predefined uniform variable arraysBrian Paul5-91/+376
This allows code such as "vec4 a = gl_LightSource[i].ambient;" to work. When a built-in uniform array is indexed with a variable index we need to "unroll" the whole array into the parameter list (aka constant buffer) because we don't know which elements may be accessed at compile-time. In the case of the gl_LightSource array of size [8], we emit 64 state references into the parameter array (8 elements times 8 vec4s per gl_LightSourceParameters struct). Previously, we only allowed constant-indexed references to uniform arrays (such as gl_LightSource[2].position) which resulted in a single state reference being added to the parameter array, not 64. We still optimize this case. Users should be aware that using "gl_LightSource[i].ambient" in their shaders is a bit expensive since state validation will involve updating all 64 light source entries in the parameter list.
2008-12-30mesa: better error message when running out of GLSL samplersBrian Paul1-1/+4
2008-12-30mesa: comments for some state varsBrian Paul1-4/+4
2008-12-30mesa: increase max constants/uniforms to 256 (vec4 vectors)Brian Paul1-2/+2
2008-12-30intel: disable ATI_texture_env_combine3 for i830( and related device).Xiang, Haihao2-1/+2
Thanks to Eric for pointing it out.
2008-12-29dri: Fix driWaitForMSC32 when divisor >= 2 and msc < 0.Eric Anholt1-9/+9
We'd come up with a negative remainder, while we were looking for the positive version of it in the loop conditional. And, since the "did we hit our target" break was disabled for the target_msc == 0 ("Just make the divisor/remainder work") path, we'd never exit. Simplify the code by just using int64_t all over instead of trying to do it in a u32 space.
2008-12-29R300: missing semicolonAlex Deucher1-1/+1
2008-12-29intel: enable ATI_texture_env_combine3. Fixes #17707Xiang, Haihao1-0/+1
2008-12-28r300: remove the unknowns from the indx_buffer codeDave Airlie2-5/+6
2008-12-24i915: separate the fog term from the specular color term.Xiang, Haihao1-19/+3
Previously fog parameter and specular color are packed into the same dword. Note specular color should be packed in BGRA for device, so if fog parameter and specular color all are present, fog parameter will dirty the alpha term of specular color. This fixes rendering issue when playing 'Yo Frankie' on 915/945.
2008-12-23intel: Fix glBitmap clipping for DRI1.Eric Anholt1-2/+2
2008-12-23Remove third buffer support from Mesa.Dave Airlie6-35/+3
This is part of the deprecated pageflipping infrastructure.
2008-12-19Add do_row_3d for mipmapping 3D texturesIan Romanick1-21/+444
Previously 3D textures were mipmapped using multiple passed through the 2D mipmap generation code. This had 3 disadvantages. First, the extra passes were slow. Second, this required the allocation of a temporary buffer to hold intermediate data. Third, and most important, the extra passes caused loss of additional bits due to integer division / bit-shifting. With this change, our mipmapgen conformance test passes for non-compressed texture formats.
2008-12-19Fix typeo in mipmap filter for GL_UNSIGNED_SHORT_1_5_5_5_REVIan Romanick1-1/+1
2008-12-19965 / GLSL: Use full precision for EXP instructionIan Romanick1-1/+1
The partial precision mode doesn't have quite enough bits of precision to pass conformance tests.
2008-12-19GLSL: The LOG2 macro doesn't have enough precisionIan Romanick1-2/+9
It looks like the LOG2 macro only has 8 or 9 bits of precission, but the ARB_vertex_program spec says "accurate to at least 10 bits".
2008-12-19intel: Fix glBitmap top/bottom clipping.Eric Anholt1-40/+35
Bug #19139.
2008-12-19intel: Don't forget the source bitmap size when clipping the size we draw.Eric Anholt1-1/+3
2008-12-19intel: Update mesa state in blit operations that want post-scissor draw bounds.Eric Anholt2-0/+7
2008-12-19intel: don't clip to scissor-clipped read framebuffer bounds in copypixels.Eric Anholt1-2/+2
2008-12-18intel: Move copyteximage source clipping out of copytexsubimage.Eric Anholt1-48/+61
glCopyTexSubImage already gets the (correct) clipping for us, so it doesn't need the path. While moving the clipping out, replace the code with the mesa path to do the same job.
2008-12-18mesa: Clip copytexsubimage to read framebuffer bounds, not scissor region.Eric Anholt1-1/+1
2008-12-18mesa: Correct _mesa_clip_to_region() off-by-one.Eric Anholt1-2/+2
Note how if: x + width == xmax + 0: width -= 0 x + width == xmax + 1: width -= 0 x + width == xmax + 2: width -= 1 So, the function was clipping to [xmin, xmax+1), not [xmin, xmax) like it was supposed to. Same for ymax.
2008-12-18glsl: Fix handling of nested parens in macro actual arguments.Michal Krol1-2/+15
2008-12-18i915: check WRAP_T instead of WRAP_R for cube map texture.Xiang, Haihao1-1/+1
2008-12-18i915: fix abort issue. (bug #19147)Xiang, Haihao2-4/+24
2008-12-17mesa: remove unneeded _mesa_reference_fragprog() callBrian Paul1-4/+2
The subsequent if/else cases always call _mesa_reference_fragprog() anyway.
2008-12-17mesa: updated commentsBrian Paul1-10/+12
2008-12-16mesa: disable debug outputBrian Paul1-2/+2
2008-12-16mesa: fix some GLSL array regressionsBrian Paul4-66/+85
array.length() wasn't working. Swizzle mask for accessing elements of float arrays was incorrect.
2008-12-15mesa: rename slang_library_noise.[ch] to prog_noise.[ch] and rename functionsBrian Paul5-521/+651
The noise functions were not glsl-specific. Also, ran indent on the code to clean it up.
2008-12-15Merge branch 'glsl-1.20-v2'Brian Paul26-3470/+3835
2008-12-15mesa: bump glsl grammar revisionBrian Paul11-13/+13
And update some copyrights.
2008-12-15mesa: in slang linker, replace assertion with link error when max samplers ↵Brian Paul1-6/+18
exceeded
2008-12-15mesa: move _mesa_dlopen(), etc into separate dlopen.c fileBrian Paul5-72/+147
2008-12-15glut: added GLUT_PPM_FILE env var to dump first frame to a PPM fileBrian Paul5-0/+94
Set GLUT_PPM_FILE to the desired filename. The first frame rendered will be written to that file.
2008-12-15mesa: more re-org of variable declarations in glsl compilerBrian Paul1-52/+56
2008-12-15mesa: more comments, clean upBrian Paul1-10/+12
2008-12-15mesa: added comments, remove unused codeBrian Paul1-32/+9
2008-12-15mesa: checkpoint: handle uniform vars in _slang_gen_var_decl()Brian Paul1-18/+59
This allows uniform declarations with scalar/array initializers. The code is rough though, and will be cleaned up.
2008-12-15intel: stub out CompressedTexSubImage2D instead of segfaulting.Eric Anholt3-0/+26
2008-12-15i965: Update state before checking for fallbacks in brw_try_draw_prims.Eric Anholt1-2/+2
This got flipped around in 7855b2aef6bd9e9c2d73260b5cd166159b2525c6. Bug #18907. Thanks to idr for pointing me at a nicer testcase than blender.
2008-12-14intel: Don't steal renderbuffer from caller in intel_miptree_create_for_regionPierre Willenbrock1-1/+1
Fixes double-frees of some regions, once from the renderbuffer code and once from the miptree itself. Bug #19062
2008-12-14i965: Add decode of index/vertex buffer and primitive emit.Eric Anholt1-4/+142
2008-12-14intel: Add batchbuffer assertions to hopefully catch future mistakes.Eric Anholt1-2/+20