8594 Commitit (7fa99ed3d825707fd0a6abdd690abb9e6af5ba9d)
 

Tekijä SHA1 Viesti Päivämäärä
  Roland Scheidegger 6babf624b7 always use argb8888 instead of rgba8888, this is far more likely to hit a faster memcopy path in mesa (at least on little endian systems, possibly on big endian too) 19 vuotta sitten
  Roland Scheidegger 2e2a981335 detect some more cases which can use straight memcpy for _mesa_texstore_rgba8888 19 vuotta sitten
  Roland Scheidegger 99e0236046 Always mark tex state atom as dirty when the texture image is dirty, this ensures texture cache gets flushed in case the new texture has the same offset as the old one (fixes glean pixelFormat test at least on r200). 19 vuotta sitten
  Brian Paul 43aa034084 updated comment 19 vuotta sitten
  Roland Scheidegger 888b1a9166 don't use derived value _ColorLogicOpEnabled as it's not current by the time we call the blend/logic op functions. Fixes glean logicOp test on r200. 19 vuotta sitten
  Brian Paul fd2e402359 added GL_CURRENT_RASTER_SECONDARY_COLOR query (OpenGL 2.1) 19 vuotta sitten
  Brian Paul bd5331f9e8 just comments and const qualifiers 19 vuotta sitten
  Brian Paul ac1d7370a7 fix broken do_EXP() 19 vuotta sitten
  Roland Scheidegger cb08dcbbf2 fix GL_REFLECTION_MAP texgen by not using tex matrix negation when lighting is not enabled (?). This fixes demos/cubemap as well as glean texCube test. 19 vuotta sitten
  Roland Scheidegger 87d6028f28 make sure we upload the new vertex program if the program string changes. 19 vuotta sitten
  Brian Paul 25d59d2962 make triangle smoothing a sw fallback (Martign van Oosterhout) 19 vuotta sitten
  Jerome Glisse 323414940f Fix compilation warning. 19 vuotta sitten
  Jerome Glisse 6a65e6db3d Removing some of r200 dependency, cleaning up code a bit, 19 vuotta sitten
  Keith Whitwell b1cb39d8bd quieten debug 19 vuotta sitten
  Keith Whitwell 16a22a5f4a Potential fix for doom3 lockups. Seems that there is a conflict 19 vuotta sitten
  Keith Whitwell 72e810db9d Disassemble active program when DEBUG_VS is set. 19 vuotta sitten
  Keith Whitwell 7b8c73460f Add code to tweak aubfile state and primitives on replay. 19 vuotta sitten
  Keith Whitwell e1ae10db2c Encode a unique id in the aub header date fields. 19 vuotta sitten
  Brian Paul bd38df11f4 Win32 fixes (SF bug 1554931) 19 vuotta sitten
  Brian Paul 31a66ada72 undo some accidental changes in _mesa_is_legal_format_and_type() 19 vuotta sitten
  Brian Paul 02aa5fba03 init accum buffer fields in _mesa_update_framebuffer_visual() 19 vuotta sitten
  Roland Scheidegger 25847f2b5b remove code to deal with non-normalized texture coordinates for tex rect targets (swtcl tex coord translation stage, tcl tex matrix adaption) and use the chip's native handling of such coords instead (!!!). Seems noone noticed those bits in the se_coord_fmt reg, even though it works fairly similar to r200 (except it's set per-unit and always active, so only enable it for texture rectangles). 19 vuotta sitten
  Brian Paul cb53555058 Redefine the BYTE_TO_FLOAT() and SHORT_TO_FLOAT() macros to avoid problems 19 vuotta sitten
  Brian Paul ef8244df1a don't use xmesa_DrawPixels_8R8G8B() if there's a software alpha channel 19 vuotta sitten
  Roland Scheidegger 7998962444 cause a raster fallback if a yuv texture is used on texture unit > 0 as yuv conversion appears only to work on first unit. 19 vuotta sitten
  Keith Whitwell 02df36f394 Basic facility for playing back captured aubfiles. Requires a small 19 vuotta sitten
  Roland Scheidegger a5e73e6887 cause a vtxfmt fallback directly when hitting NewList for radeon and r200 drivers, otherwise we'll mix up tcl and vtxfmt path for some reason. This fixes a warzone2100 asssertion failure. 19 vuotta sitten
  Keith Whitwell 3e05902d30 Consistent return values from the bm* functions. 19 vuotta sitten
  Keith Whitwell 493b2ddecb Cope with memory pool fragmentation by allowing a second attempt at 19 vuotta sitten
  Keith Whitwell c26f36c830 Add some asserts, fix some not-quite-bugs. 19 vuotta sitten
  Keith Whitwell e48db4430f Fix glitch with pool alignments. 19 vuotta sitten
  Keith Whitwell 1456a0fff6 Use lower alignments where possible. Also pad out allocated blocks to 19 vuotta sitten
  Keith Whitwell 133f141680 Make sure bmBufferOffset is called for all active buffers every time 19 vuotta sitten
  Roland Scheidegger c5cb8e2c6f make really sure R200_VAP_PROG_VTX_SHADER_ENABLE is never set when we're already in a tcl fallback, otherwise the chip will instantly lock up when vertex progs are enabled the next time not in a tcl fallback (fixes for instance guaranteed lockup running any program which uses vertex progs with tcl_mode=0 and then later with tcl_mode=1). 19 vuotta sitten
  Roland Scheidegger 28e7219b96 only allow VERT_ATTRIB_MAX instead of _TNL_ATTRIB_MAX for inputs of vertex programs (fixes a segfault since the result of the shift is undefined otherwise, and it may happen that _TNL_ATTRIB_POINTSIZE will be tried to read, unlike all other attribs this however may be unitialized (might be a bug in itself)). 19 vuotta sitten
  Eric Anholt d016d4e70f Fix a leak of the screen's option cache on cleanup (copied from radeon). 19 vuotta sitten
  Keith Whitwell 14ec34d647 Simplify the immediate and displaylist code. Treat VertexAttrib*ARB 19 vuotta sitten
  Brian Paul 2216aac8ea comment out EXTRA_LIB_PATH, ?= causes problems on HP-UX 19 vuotta sitten
  Brian Paul bb2180dca3 Fixes from Christopher Bell: 19 vuotta sitten
  Brian Paul 7d767604c7 remove stray tab 19 vuotta sitten
  Brian Paul d9aebd8498 for VERTEX_ATTRIB_WEIGHT, use break, not return 19 vuotta sitten
  Brian Paul 4a901667e5 document vertex.weight hack 19 vuotta sitten
  Brian Paul 3a55750d48 Hack for Warcraft (bug 8060): allow 'vertex.weight' to be referenced in 19 vuotta sitten
  Brian Paul 43cc1dc18f fix typo in enable_parser_extensions(): s/point_parameters/vertex_blend/ 19 vuotta sitten
  Brian Paul a088f160b3 Consolidate common case of _mesa_set_program_error() followed by _mesa_error() 19 vuotta sitten
  Brian Paul 1f03339f1c updated info about glxproto.h 19 vuotta sitten
  Keith Whitwell d5cbb49c22 Dynamically allocate instruction store for tnl programs according to 19 vuotta sitten
  Keith Whitwell 74b2166ff8 Fixes for calculating point attenuation 19 vuotta sitten
  Keith Whitwell f65ad97469 Don't export NV_vertex_program as it's not supported, it confuses 19 vuotta sitten
  Rune Petersen ac7ea94030 Managed to make a commit that can't build... Sorry again... 19 vuotta sitten