aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa
Commit message (Collapse)AuthorAgeFilesLines
...
* xlib: plug in more meta functions, if TEST_META_FUNCS is setBrian Paul2009-08-311-13/+15
|
* mesa: implement GL_DEPTH_BUFFER_BIT for _mesa_meta_blit_framebuffer()Brian Paul2009-08-312-25/+96
|
* mesa: disable another debug testBrian Paul2009-08-311-1/+1
|
* mesa: make verts[] arrays local varsBrian Paul2009-08-311-101/+98
|
* r200: emit cube for kms correctly + fix tex emit resetDave Airlie2009-09-012-2/+4
| | | | CS checker found some issues.
* xlib: option to enable/test meta functions (disabled)Brian Paul2009-08-313-4/+22
|
* mesa: implement depth/stencil formats for meta glDrawPixelsBrian Paul2009-08-311-34/+229
|
* mesa: remove accidentally commited debug/disabled codeBrian Paul2009-08-311-2/+2
|
* mesa: added _mesa_is_stencil_format()Brian Paul2009-08-312-0/+19
|
* swrast: fix selection/feedback regressionBrian Paul2009-08-311-1/+1
| | | | | This fixes a conform selection/feedback regression introduced by commit 8f4d66c5f893b49eb3973aa3b31a856314c045c7
* mesa: debug printf for KILBrian Paul2009-08-311-0/+5
|
* swrast: can't use deferred texture/shading if using KIL instructionBrian Paul2009-08-311-0/+3
| | | | | | If the fragment program uses KIL, we have to execute it before z/stencil testing. Otherwise, deferred texture/shading lets us skip shading for pixels that fail z/stencil testing.
* r300/compiler: fix warning due to no newlineDave Airlie2009-09-011-1/+2
|
* r200: emit max vtx info for index buffer.Dave Airlie2009-09-013-0/+12
| | | | We need this for the CS bounds checking.
* radeon: Fix null pointer reference in debug system if no context is bind.Pauli Nieminen2009-09-011-3/+6
|
* r600: Add more trace debug output to rendering pipeline.Pauli Nieminen2009-08-311-0/+10
|
* radeon: Add support for indenting debug output.Pauli Nieminen2009-08-315-3/+67
| | | | Indetion can be used to make it easier to read debug code when sections of debug output are indented.
* radeon: Add comment warning about not choosing critical debug level.Pauli Nieminen2009-08-311-0/+3
|
* radeon: Change default debug level to verbose.Pauli Nieminen2009-08-311-1/+1
| | | | Verbose is a lot better for developement but we should considre changing it to normal in stable branch.
* r300: Convert to shared debug code.Pauli Nieminen2009-08-3110-51/+66
|
* r200: Convert r200 to use new style debug code.Pauli Nieminen2009-08-3112-106/+73
| | | | Only very few places where realy converted so there isa lot of to do.
* r600: Convert to shared debug code and add a few new debug messages.Pauli Nieminen2009-08-3114-173/+141
| | | | There is only a few functions that have debugging enabled now.
* radeon: Make OQ to use new style debugging.Pauli Nieminen2009-08-311-11/+12
|
* radeon: Add gcc attribute to enable pritnf format warnings.Pauli Nieminen2009-08-311-0/+16
|
* r100: Use shared debug code.Pauli Nieminen2009-08-3124-222/+125
| | | | | | Converted r100 to use shared debug code with sed and fast compile check. New code has compability layer so old debugging code doesn't have to be changed all immidiatly.
* radeon: Add common debugging functions.Pauli Nieminen2009-08-318-0/+213
| | | | | | | | | | These function are aiming to make it very simple to add and keep large amount of debugging code without having runtime impact in relase builds. Basic idea is to expose simple printf style debugging functions that are inlined. Level parameter will be evalueted in compile time so compiler can optimise some of debugging functions out if compile time request for debug level is too tight.
* mesa: added const qualifiers, move local varBrian Paul2009-08-311-7/+8
|
* mesa: fix saturation logic in emit_texenv()Brian Paul2009-08-311-1/+7
| | | | | | We need to clamp/saturate after each texenv stage, not just the last one. Fixes glean texEnv failure for softpipe (and probably other fragment program- based drivers).
* mesa: fix 32bit cross compilation on a 64bit machineMarc Dietrich2009-08-311-1/+1
| | | | | | | | | | | When cross compiling on a 64bit machine, gen_matypes.c is build for the host machine (64bit) but must generates code for the target machine (32bit). This causes wrong offsets all over the place and crashes googleearth on my machine. Solution is to add -m32 when cross compiling. Attached patch is compatible with linux-x86-32 and autoconf based builds.
* r600: add missing r7xx pci idAlex Deucher2009-08-312-0/+2
|
* mesa: set additional fields in _mesa_buffer_map_range()Brian Paul2009-08-311-3/+5
|
* mesa: set Length/Offset fields in _mesa_buffer_map()Brian Paul2009-08-311-0/+2
|
* mesa: additional assertions for ctx->Driver.UnmapBuffer()Brian Paul2009-08-311-4/+7
| | | | | The Pointer, Offset and Lenght fields should be cleared by the driver function since ctx->Driver.Unmap() may be called from VBO code, etc.
* intel: clear buffer fields in intel_bufferobj_unmap()Brian Paul2009-08-311-0/+2
|
* mesa: new assertions, comments about buffer mappingBrian Paul2009-08-311-12/+29
| | | | | | | Since ctx->Driver.MapBuffer() and ctx->Driver.MapBufferRange() may be called from other places in Mesa (such as VBO) it's important that the driver callbacks set all the buffer object fields properly (Pointer, Offset, Length, etc). Add assertions to make sure that the driver does that.
* st/mesa: fix obj->Pointer offset in st_bufferobj_map_range()Brian Paul2009-08-311-5/+5
| | | | | This fixes a bunch of gallium regressions since commit 8096aa521369c3bcf5226c060efa6dd06e48ddc8
* swrast: minor code consolidationBrian Paul2009-08-301-7/+2
|
* mesa: consolidate texture-related code in meta.cBrian Paul2009-08-301-262/+372
| | | | | Also, allow using texture rectangles, NPOT textures or regular POT textures (preferred in that order).
* intel: use more efficient loop over buffersBrian Paul2009-08-301-3/+7
|
* mesa: avoid redundant viewport changes in meta codeBrian Paul2009-08-301-3/+18
|
* i965: Fix segfault with ARB_oq CheckQuery when results are already fetched.Eric Anholt2009-08-291-1/+1
|
* i965: Support PROGRAM_ENV_PARAMs in brw_vs_emit.cEric Anholt2009-08-292-1/+4
|
* r300: Disable threshold register for KMS.Pauli Nieminen2009-08-291-1/+2
| | | | Kernel side doesn't have required register in safe list so can't send it kernel.
* r300: Swtcl prediction was still missing scissors.Pauli Nieminen2009-08-291-2/+3
| | | | All that state stuff should really be in state atoms :/
* r300: Add missing pre_emit_count to swtcl state size prediction.Pauli Nieminen2009-08-291-3/+4
|
* mesa: Update sconscript for new ARB/FP assembler.José Fonseca2009-08-291-0/+6
|
* Put 'extern' first on the line to silence GCC warnings.Ian Romanick2009-08-281-2/+2
|
* i965: Use VBOs in the VBO module on 965, now that we have ARB_map_buffer_range.Eric Anholt2009-08-281-0/+2
| | | | This looks like it's a small win on blender.
* vbo: Fix array pointer calculation for MapBufferRange-mapped vertex data.Eric Anholt2009-08-281-1/+3
| | | | | We would end up with the offset from the start of the mapping rather than the offset from the start of the buffer.
* intel: Add support for GL_ARB_map_buffer_range.Eric Anholt2009-08-285-35/+189
| | | | | Passes glean's bufferObject test, and should provide good performance in the cases applications are expected to use.