summaryrefslogtreecommitdiff
path: root/src/mesa
AgeCommit message (Collapse)Author
2007-05-13r300: A few very minor indenting corrections.Oliver McFadden
2007-05-13r300: Use the defined values for the interpolater (interp_magic) magic values.Oliver McFadden
2007-05-13r300: Use the defined values when writing to R300_VAP_INPUT_CNTL_[01].Oliver McFadden
You can verify this is correct with the following code. assert (0x00000001 == R300_INPUT_CNTL_0_COLOR); assert (0x00000405 == (R300_INPUT_CNTL_POS | R300_INPUT_CNTL_COLOR | R300_INPUT_CNTL_TC0));
2007-05-12Revert "r300: Perform the locking closer to the DRM texture upload call."Oliver McFadden
This reverts commit 93881edb46fc95e1cfb4ded4e8a5db92612d3e4d.
2007-05-12bring over recent radeonMakeCurrent fixes for r300 to radeon/r200Roland Scheidegger
2007-05-12r300: Removed the name argument to ALLOC_STATE; do the name via the macro.Oliver McFadden
2007-05-12r300: Renamed r300DoEmitState to r300EmitAtoms.Oliver McFadden
2007-05-12r300: Perform the locking closer to the DRM texture upload call.Oliver McFadden
This might help if with attaching GDB if the driver gets into a -EAGAIN loop.
2007-05-11r300: Removed unused FORCE_32BITS_ELTS define.Oliver McFadden
2007-05-11r300: Removed the unused CPT macro.Oliver McFadden
2007-05-11r300: Moved r300PackFloat24 near r300PackFloat32.Oliver McFadden
2007-05-11r300: Added insert_at_tail to the ALLOC_STATE macro.Oliver McFadden
2007-05-11Revert "r300: Merged radeon_span.c."Oliver McFadden
This reverts commit 0aa998b2ab6fdfe139b54de9868e2383440685d0.
2007-05-11r300: Corrected another error; regexp replaced something it shouldn't have.Oliver McFadden
2007-05-11r300: Corrected some macro errors from the previous commit.Oliver McFadden
2007-05-11r300: Reduced the diff on radeon_lock.[ch].Oliver McFadden
2007-05-11r300: Initial work on merging radeon_lock.[ch].Oliver McFadden
2007-05-11r300: Merged radeon_span.c.Oliver McFadden
2007-05-11r300: Cleaned up function names in r300_texstate.c.Oliver McFadden
2007-05-11r300: Enable hardware 3D texture support. Fixes the stex3d demo.Oliver McFadden
2007-05-11r300: Corrected a small error from 37cbf38c344012f9d6e938937dac3697b73721a8.Oliver McFadden
2007-05-11r300: Cleaned up the blend factor function.Oliver McFadden
2007-05-11r300: Removed the r300BindProgram function; mesa default does better checking.Oliver McFadden
2007-05-11r300: Removed deprecated/disabled VBO code from r300_mem.cOliver McFadden
Also removed a couple of unused fields from the r300_memory_manager structure.
2007-05-11r300: Indented r300_mem.c; I forgot this because it used to be radeon_mm.c.Oliver McFadden
2007-05-11r300: Use __FUNCTION__ not __func__.Oliver McFadden
Just for consistency; most of the code already uses __FUNCTION__.
2007-05-11r300: Assert if the primitive type is unknown; this can't really happen.Oliver McFadden
2007-05-11r300: Moved some code around in r300_render.c and general clean up.Oliver McFadden
2007-05-11user-declared uniform structs not supported yet (see bug 10908)Brian
2007-05-11don't ignore return value of _slang_codegen_global_variable()Brian
2007-05-11remove some unneeded code in init_machine()Brian
2007-05-11r300: Removed some checking in r300NumVerts that is not needed.Oliver McFadden
According to Aapo Tahkola the OpenGL specification defines the behaviour when there are not enough vertices for the primitive type, thus DRI drivers do not need to perform verification on the number of vertices per primitive.
2007-05-11r300: Function naming correction in r300_texmem.c.Oliver McFadden
2007-05-11r300: Cleaned up function names in r300_state.c.Oliver McFadden
2007-05-11r300: Cleaned up function naming in r300_emit.c.Oliver McFadden
2007-05-11r300: Renamed r300_maos.c to r300_emit.c; it contains mostly emit code now.Oliver McFadden
2007-05-11Remove unused FB_* tokens, re-indent code.Brian
2007-05-11When feeding back texcoords, don't divide by W. See bug 10913.Brian
2007-05-11Fix some bugs related to loop counters and conditional branching.Patrick Baggett
2007-05-10more indentation fixes, remove 'register' keywordsBrian
2007-05-10re-indent some codeBrian
2007-05-10regeneratedBrian
2007-05-10Implement exp() in terms of __asm float_power. Fix typo in mod(vec4) function.Brian
exp() was using __asm float_exp (OPCODE_EXP) but that computes base two, not e. See bug 10907.
2007-05-10Fix reversed enable logic in enable_textureIan Romanick
Fix bug inserted in commit c9e723e5013443df984cb3987ffa3a9ba3384b89. Discovered by Oliver McFadden (z3ro).
2007-05-10r300: Added TODO comment regarding texture tiling; I'm not sure about this.Oliver McFadden
2007-05-10r300: Corrected a compile error introduced by one of the previous commits.Oliver McFadden
2007-05-10r300: Removed obsolete start_index16_packet/start_index32_packet.Oliver McFadden
It's all in r300_render.c now.
2007-05-10r300: Moved some more emit code into r300_render.c.Oliver McFadden
2007-05-10r300: Moved some more of the emit code into r300_render.c.Oliver McFadden
2007-05-10Replace `pkg-config --cflags libdrm` with LIBDRM_CFLAGS, remove disabled ↵Brian
lines, remove obsolete comments.