Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-10-27 | Bug #4900: Fix the non-fogcoord fog test on r100 (and rv200) at tcl_mode=1 by | Eric Anholt | |
flipping the signs on two factors. While this contradicts the DDK, it matches what r200 does, and it fixes the test. | |||
2005-10-27 | Add support for HW stencil spans, mirroring the depth spans support. Used for | Eric Anholt | |
Rage 128 stencil support. | |||
2005-10-27 | Bump driver date for recent extension adds. | Eric Anholt | |
2005-10-26 | Cover my arse. | Aapo Tahkola | |
2005-10-26 | Reduce stderr noise and fix some compiler warnings. | Aapo Tahkola | |
2005-10-26 | Remove few outdated r200 files. | Aapo Tahkola | |
2005-10-26 | Sync with my local tree. | Aapo Tahkola | |
Changes to current operation: -Elts are no longer converted to 16-bit format -Cube maps | |||
2005-10-26 | Fix invalid vsf temp count for rv350. | Aapo Tahkola | |
2005-10-26 | Fix the RGB order of the specular color emit, and turn GL_EXT_secondary_color | Eric Anholt | |
back on. Tested using seccolor modified to use the blue channel instead of green, since green stays in the same place across RGB/BGR mistakes. Also hook in UpdateSpecular on COLOR_EXT change, which might have resulted in missing statechanges before. | |||
2005-10-26 | Add support for GL_EXT_fog_coord, tested using tests/fog.c. (Also, matches the | Eric Anholt | |
output from indirect rendering). | |||
2005-10-26 | Add built programs to .cvsignore. | Eric Anholt | |
2005-10-26 | Add a fog mode (normal and fog_coord, leaner/exp/exp2 mode) testing program I | Eric Anholt | |
wrote for sis, which has also exposed a few bugs elsewhere. | |||
2005-10-26 | Add disabled support for GL_EXT_fog_coord. While it seems correct to me, it's | Eric Anholt | |
not respecting the coords (or perhaps interpreting them differently?) in my testing. However, in the process it led to a fix of a secondary color handling issue where it would be taken from the wrong offset, I believe, based off of reading the r200 driver. Also add a minor tweak to save time in the fog-but-not-specular case. | |||
2005-10-25 | Move the front.offset setting above a check to shortcut reallocating buffers if | Eric Anholt | |
width and height stayed the same. Rely on front.offset pointing at the origin in the window (rather than the origin of the front buffer), and fix the coords in swapbuffers, which were wrong. This is different from other drivers because we've got a back buffer with a 0,0 origin at the window's origin, which makes it more convenient to have the front buffer match it. | |||
2005-10-25 | Initial add of some (disabled) SiS 6326 drawing code integrated from Alan Cox's | Eric Anholt | |
last drop I saw, which was in turn based on a code drop of mine. Texturing, culling, and several extensions are unimplemented, and some features could probably be improved. It's untested, but there don't appear to be regressions on the 300-series code, so I'd like to get these bits in now so that it can be worked on as not a huge diff. | |||
2005-10-24 | updates from 6.4 branch | Brian Paul | |
2005-10-24 | Cut a bunch of code by not trying to precompute the blit commands and instead | Eric Anholt | |
just do it per blit. No noticable performance difference (or behavior difference, in my tests), and a significant difference in sanity. | |||
2005-10-24 | In the last commit I added in a fatal error on unknown base formats so I | Eric Anholt | |
wouldn't get confused when adding support for new formats. However, it resulted in dying in texenv instead of drawing something undefined for GL_DECAL. Do what GLcore apparently does and just pass the fragment through. | |||
2005-10-24 | Fix and enable GL_MESA_ycbcr_texture. Looks fine with yuvrect. I'm slightly | Eric Anholt | |
concerned that TEXEL_YUV422 looks like TEXEL_YVU422 and TEXEL_VUY422 looks like TEXEL_VYU422 in yuvrect, but I'm happy enough for now. | |||
2005-10-24 | Add support for GL_EXT_secondary_color, tested with seccolor test. | Eric Anholt | |
2005-10-24 | Turn off the AGP dispatch path yet again, as it seems to be broken (found with | Eric Anholt | |
tuxracer and the upcoming support for secondary color). | |||
2005-10-24 | fragment program writing to result.depth.z was broken | Brian Paul | |
2005-10-24 | Add RV350 AQ chip. (popolon at popolon dot org) | Adam Jackson | |
2005-10-24 | Since we memcpy texture data synchronously to the card, idle the engine before | Eric Anholt | |
we start copying. I haven't seen it go wrong before, but I'm pretty sure this fix is correct. | |||
2005-10-24 | - Add a few more hardware internal formats that are supported. Some remaining | Eric Anholt | |
ones require custom texstore, so they aren't done yet. - Add YCBCR support commented out, since the yuvsquare test didn't work with just the bits I've added. - Add the no-compression GL_ARB_texture_compression support. - Add the driconf texture depth option and try to respect it. | |||
2005-10-24 | Fix the GL_BLEND case (and remove the fallback associated with it) by converting | Eric Anholt | |
the float values to bytes before packing them. Tested with texenv. | |||
2005-10-24 | Fix texenv by moving a misplaced check for being in fallback (should cover only | Eric Anholt | |
render state, not texture state). While here, move a SIS_FIREVERTICES to a more appropriate location, though it was harmless. | |||
2005-10-24 | Add support for GL_ARB_texture_border_clamp and GL_ARB_texture_mirrored_repeat, | Eric Anholt | |
tested using texwrap, fixing the sourcing of border constant values (use the bytes, not the floats!). Remove the fallback on GL_CLAMP_TO_EDGE, which acts properly, and add a note to GL_CLAMP about nonconformance (whcih is what the fallback for CLAMP_TO_EDGE was probably targeting). | |||
2005-10-24 | Fix a typo in a fallback string. | Eric Anholt | |
2005-10-24 | Add support for GL_EXT_stencil_wrap by guessing that the skip of two values in | Eric Anholt | |
the register header was meaningful. It turns out those were the proper values for the plain INCR/DECR ops, while what we were using as INCR/DECR were the _WRAP versions. Tested with stencil_wrap (didn't expose normal/_WRAP swapping) and stencilwrap (exposed it nicely) tests. Props to idr for poking me about adding this. | |||
2005-10-22 | disable yuv textures (GL_MESA_ycbcr_texture) on rv250 (hw bug, #2078). ↵ | Roland Scheidegger | |
Change the initialization to fail if an unknown pci id is detected, instead of accepting all values which are not r100-based radeons. | |||
2005-10-22 | Fix FreeBSD build by building libGL in the order desired, and doing a fix to my | Eric Anholt | |
mklib changes. | |||
2005-10-21 | fix GLX server resize/crash when resizing windows | Brian Paul | |
2005-10-21 | check span.y >=0 (bug 4842) | Brian Paul | |
2005-10-21 | new depth tests | Keith Whitwell | |
2005-10-21 | simplify, remove sgi messages | Keith Whitwell | |
2005-10-21 | Darwin version fix (SF bug 1334274) | Brian Paul | |
2005-10-21 | fix broken SWZ instruction | Brian Paul | |
2005-10-21 | fix broken KIL | Brian Paul | |
2005-10-21 | better looking tests | Keith Whitwell | |
2005-10-21 | Make test visible | Keith Whitwell | |
2005-10-21 | Better looking test. | Keith Whitwell | |
2005-10-21 | add the tile bits for offset, and unk bit 31 of size | Dave Airlie | |
2005-10-20 | restore FASTCALL stuff | Brian Paul | |
2005-10-20 | fix bad loops in TransposeMatrix[fd]() | Brian Paul | |
2005-10-20 | A bunch of little tests which exercise each ARB_fp instruction plus | Keith Whitwell | |
a couple of other interesting cases. | |||
2005-10-20 | added mm.c mm.h execmem.c | Brian Paul | |
2005-10-20 | fix another renderbuffer wrapping bug | Brian Paul | |
2005-10-20 | Disable the FASTCALL optimization because it still breaks server-side GLX. | Brian Paul | |
2005-10-20 | Bump driver dates for the crasher fixes yesterday. | Eric Anholt | |