summaryrefslogtreecommitdiffstats
path: root/src/mesa
Commit message (Collapse)AuthorAgeFilesLines
* Revert the 'make static' part of 962f92611216e304c95e7c089b38d58066236014Kristian Høgsberg2010-05-262-81/+307
| | | | | | | | The es1 and es2 dispath table initialization code is generated from the API XML files and we can't easily share the dispatch table code setup. Keep the _mesa_init_shader_dispatch() part of the patch, but roll back the static-ization of shader entrypoints so es1 and es2 dispatch initialization still works.
* mesa: move all vertex array functions into varray.cBrian Paul2010-05-254-273/+274
|
* mesa: added _mesa_GetVertexAttribIiv / AttribIuiv()Brian Paul2010-05-252-54/+146
| | | | Refactor the code for all the glGetVertexAttrib() functions.
* mesa: added _mesa_VertexAttribIPointer()Brian Paul2010-05-252-0/+24
|
* mesa: new GL 3.0 VertexAttrib commandsBrian Paul2010-05-251-0/+174
| | | | Still need to plug in API dispatch...
* mesa: make a bunch of shader API functions staticBrian Paul2010-05-253-377/+173
|
* mesa: display list support for uint uniformsBrian Paul2010-05-251-1/+199
| | | | Still need to plug into dispatcher...
* mesa: consolidate some glUniform codeBrian Paul2010-05-251-78/+29
|
* mesa: unsigned int uniform functions (GL3)Brian Paul2010-05-252-0/+96
|
* mesa: support for unsigned int uniformsBrian Paul2010-05-251-1/+55
|
* r300/compiler: implement SGT+SLE opcodesMarek Olšák2010-05-261-0/+20
| | | | Reported-by: Gianluca Anzolin <[email protected]>
* r300/compiler: fix dumping r5xx vertex shadersMarek Olšák2010-05-261-0/+3
|
* r300/compiler: move hardware caps to the radeon_compiler base structMarek Olšák2010-05-266-18/+19
| | | | Needed for vertex shaders too.
* r300/compiler: shorten swizzle expressionsMarek Olšák2010-05-261-44/+65
|
* meta: Convert Z value from normalized to object-space in meta codeBrian Paul2010-05-241-4/+19
| | | | | | | | | | | | | | Convert Z from a normalized value in the range [0, 1] to an object-space Z coordinate in [-1, +1] so that drawing at the new Z position with the default/identity ortho projection results in the original Z value. Used by the meta-Clear, Draw/CopyPixels and Bitmap functions where the Z value comes from the clear value or raster position. Fixes piglit tests fdo23670-depth_test, quad-invariance and glsl-orangebook-ch06-bump as well as oglc zbfunc.c. https://bugs.freedesktop.org/show_bug.cgi?id=23670
* mesa: Reenable check for GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER_EXTKristian Høgsberg2010-05-241-21/+23
| | | | | | | | The check was disabled when FEATURE_OES_framebuffer_object was enabled, since that used to mean we weren't implementing regular OpenGL semantics. Now that we can compile in support for multiple APIs, change the #ifdef to compile the check in when FEATURE_GL is enabled and enable the check for contexts that implement OpenGL at runtime.
* glsl: silence unused var warningsBrian Paul2010-05-242-0/+4
|
* mesa: Handle FEATURE_es2_glsl differences at runtime tooKristian Høgsberg2010-05-245-29/+53
| | | | | | | Now that we can support different APIs at runtime, we need to check the context for the API we're currently providing as well. https://bugs.freedesktop.org/show_bug.cgi?id=28194
* i965: Add support for all 8 possible ARB_draw_buffers in Mesa.Eric Anholt2010-05-232-2/+1
| | | | | We should be able to do 16, but are limited by Mesa's static buffer allocations.
* i965: Fix bit allocation for number of color regions for ARB_draw_buffers.Eric Anholt2010-05-231-1/+1
| | | | | | | | If you used all 4 color targets we currently support, we would see 0 and end up just writing the first output. Give enough bits that we can do the maximum of 16. Fixes piglit fbo-drawbuffers-maxtargets.
* st_api: Give get_egl_image arguments directly to the functionJakob Borncrantz2010-05-211-3/+1
|
* mesa: fix warnings about missing initializers in get.c tableBrian Paul2010-05-211-326/+330
|
* st/mesa: remove unused varBrian Paul2010-05-211-1/+0
|
* gallium: Fix invalidate framebuffer with old libGL librariesJakob Bornecrantz2010-05-217-3/+115
|
* Merge branch 'gallium-msaa'Roland Scheidegger2010-05-2123-193/+314
|\ | | | | | | | | | | Conflicts: src/mesa/state_tracker/st_gen_mipmap.c src/mesa/state_tracker/st_texture.c
| * st/mesa: fix wrong argument orderRoland Scheidegger2010-05-181-2/+3
| |
| * mesa/st: adapt to interface changesRoland Scheidegger2010-05-1723-194/+316
| | | | | | | | | | adapt to blit changes, and also handle a bit more msaa state in theory (incomplete, doesn't handle resolves in any way for now).
* | Add __DragonFly__ in querymatrix for fpclassify()David Shao2010-05-211-1/+1
| | | | | | | | Signed-off-by: Brian Paul <[email protected]>
* | Merge branch 'gallium-front-ccw'Keith Whitwell2010-05-211-45/+29
|\ \
| * | gallium: more work on ccw flag removalKeith Whitwell2010-05-141-45/+29
| | | | | | | | | | | | The linux-debug target builds...
* | | i965: remove disabled code for cycling through MRF registers in clipping.Eric Anholt2010-05-202-17/+2
| | | | | | | | | | | | | | | | | | | | | The idea would be that you could have multiple send messages going on if nothing depended on the previous message's results and you used a different send message. The problem is that the later send requires the VUE handle returned by the first send's allocate anyway.
* | | intel: Throttle after doing copyregion/swapbuffers round tripKristian Høgsberg2010-05-204-35/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before we would throttle in the flush callback prior to round-tripping to the server to do copyregion or swapbuffer. Now, instead just note that we need to throttle and do it in intel_prepare_render(), which will be called after receiving the response from the server but before we start rendering the next frame. Even if the server also throttles us in swapbuffer, this just makes the throttling a no-op when we hit intel_prepare_render(). With that we can drop the using_dri2_swapbuffers hack and just always throttle.
* | | fpclassify is available on C99-compliant Solaris releases tooAlan Coopersmith2010-05-191-1/+2
| | | | | | | | | | | | | | | Signed-off-by: Alan Coopersmith <[email protected]> Signed-off-by: Brian Paul <[email protected]>
* | | r300/compiler: Implement constant foldingNicolai Hähnle2010-05-191-1/+215
| | | | | | | | | | | | Signed-off-by: Nicolai Hähnle <[email protected]>
* | | r300/compiler: Emit 0.5 swizzle when necessary.Tom Stellard2010-05-191-1/+3
| | | | | | | | | | | | Signed-off-by: Marek Olšák <[email protected]>
* | | i965: Remove constant or ignored-by-hw args from FF sync message setup.Eric Anholt2010-05-184-64/+32
| | |
* | | i965: Revert accidental debug change in 562e2d114ec0cba8Eric Anholt2010-05-181-1/+1
| | |
* | | gen6 fix: fix a wrong bit in binding_table_pointerZou Nan hai2010-05-181-1/+1
| | |
* | | i965: Fix point coordinate replacement after airlied's ffvertex changes.Eric Anholt2010-05-173-2/+24
| | | | | | | | | | | | | | | | | | | | | | | | This basically restores the previous state, where a vertex result slot is set up for the texcoord to be replaced with point coord. Fixes piglit point-sprite test. Bug #27625
* | | i965: Add SF program disasm under INTEL_DEBUG=sf.Eric Anholt2010-05-173-2/+11
| | |
* | | intel: Call intel_draw_buffer() again after _mesa_make_current()Kristian Høgsberg2010-05-171-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | The initial call to intel_draw_buffers() happens when intel->ctx.DrawBuffer is still NULL. Call it again after calling _mesa_make_current(). https://bugs.freedesktop.org/show_bug.cgi?id=28112
* | | gallium: EXT_timer_query support.Mathias Fröhlich2010-05-172-0/+6
| | | | | | | | | | | | Signed-off-by: Corbin Simpson <[email protected]>
* | | st/mesa: call st_flush_bitmap_cache() from st_readpixels()Brian Paul2010-05-171-0/+3
| | | | | | | | | | | | | | | | | | Fixes regression from commit b0427bedde80e3189524651a327235bdfddbc613. Reviewed-by: José Fonseca <[email protected]>
* | | i965: Make rasterization of single and multiple quad prims match.Eric Anholt2010-05-171-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | This is trying to follow the spirit of the invariance rules, though they're not specific on this point. Fixes quad-invariance piglit test while retaining the 22s -> 18s win on glean blendFunc. This was a regression in c67d9d84f501f145f841c0b981caff6f4dfd936f.
* | | i965: Remove the half-baked code for multiple OQs at the same time.Eric Anholt2010-05-163-21/+13
| | | | | | | | | | | | | | | GL doesn't actually let you begin an OQ while one is active, so the extra work was pointless.
* | | i965: Remove unused occlusion query struct field.Eric Anholt2010-05-161-3/+0
| | |
* | | r300/compiler: fix peephole optimizerTom Stellard2010-05-161-1/+14
| | | | | | | | | | | | Tested-by: Marek Olšák <[email protected]>
* | | r300/compiler: Implement simple peephole optimizerNicolai Hähnle2010-05-168-47/+308
| | | | | | | | | | | | Signed-off-by: Nicolai Hähnle <[email protected]>
* | | mesa: Remove unnecessary header.Vinson Lee2010-05-151-2/+0
| | |
* | | r300/compiler: silence a warningMarek Olšák2010-05-151-1/+1
| | |