1. eee8537 set 6.5.1 release date by Brian Paul · 18 years ago
  2. 3dcf231 Fallback if ColorLogicOp is enabled. Cleanup a bit the fallback function. by Jerome Glisse · 18 years ago
  3. 8c9366a Remove MESA_LITTLE_ENDIAN guard for code that seems to work fine on big endian. by Michel Dänzer · 18 years ago
  4. 657f738 VS nr of urb entries is constrained to be one of a fixed set of values, by Keith Whitwell · 18 years ago
  5. 6babf62 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) by Roland Scheidegger · 18 years ago
  6. 2e2a981 detect some more cases which can use straight memcpy for _mesa_texstore_rgba8888 by Roland Scheidegger · 18 years ago
  7. 99e0236 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). by Roland Scheidegger · 18 years ago
  8. 43aa034 updated comment by Brian Paul · 18 years ago
  9. 888b1a9 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. by Roland Scheidegger · 18 years ago
  10. fd2e402 added GL_CURRENT_RASTER_SECONDARY_COLOR query (OpenGL 2.1) by Brian Paul · 18 years ago
  11. bd5331f just comments and const qualifiers by Brian Paul · 18 years ago
  12. ac1d737 fix broken do_EXP() by Brian Paul · 18 years ago
  13. cb08dcb 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. by Roland Scheidegger · 18 years ago
  14. 87d6028 make sure we upload the new vertex program if the program string changes. by Roland Scheidegger · 18 years ago
  15. 25d59d2 make triangle smoothing a sw fallback (Martign van Oosterhout) by Brian Paul · 18 years ago
  16. 3234149 Fix compilation warning. by Jerome Glisse · 18 years ago
  17. 6a65e6d Removing some of r200 dependency, cleaning up code a bit, by Jerome Glisse · 18 years ago
  18. b1cb39d quieten debug by Keith Whitwell · 18 years ago
  19. 16a22a5 Potential fix for doom3 lockups. Seems that there is a conflict by Keith Whitwell · 18 years ago
  20. 72e810d Disassemble active program when DEBUG_VS is set. by Keith Whitwell · 18 years ago
  21. 7b8c734 Add code to tweak aubfile state and primitives on replay. by Keith Whitwell · 18 years ago
  22. e1ae10d Encode a unique id in the aub header date fields. by Keith Whitwell · 18 years ago
  23. bd38df1 Win32 fixes (SF bug 1554931) by Brian Paul · 18 years ago
  24. 31a66ad undo some accidental changes in _mesa_is_legal_format_and_type() by Brian Paul · 18 years ago
  25. 02aa5fb init accum buffer fields in _mesa_update_framebuffer_visual() by Brian Paul · 18 years ago
  26. 25847f2 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). by Roland Scheidegger · 18 years ago
  27. cb53555 Redefine the BYTE_TO_FLOAT() and SHORT_TO_FLOAT() macros to avoid problems by Brian Paul · 18 years ago
  28. ef8244d don't use xmesa_DrawPixels_8R8G8B() if there's a software alpha channel by Brian Paul · 18 years ago
  29. 7998962 cause a raster fallback if a yuv texture is used on texture unit > 0 as yuv conversion appears only to work on first unit. by Roland Scheidegger · 18 years ago
  30. 02df36f Basic facility for playing back captured aubfiles. Requires a small by Keith Whitwell · 18 years ago
  31. a5e73e6 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. by Roland Scheidegger · 18 years ago
  32. 3e05902 Consistent return values from the bm* functions. by Keith Whitwell · 18 years ago
  33. 493b2dd Cope with memory pool fragmentation by allowing a second attempt at by Keith Whitwell · 18 years ago
  34. c26f36c Add some asserts, fix some not-quite-bugs. by Keith Whitwell · 18 years ago
  35. e48db44 Fix glitch with pool alignments. by Keith Whitwell · 18 years ago
  36. 1456a0f Use lower alignments where possible. Also pad out allocated blocks to by Keith Whitwell · 18 years ago
  37. 133f141 Make sure bmBufferOffset is called for all active buffers every time by Keith Whitwell · 18 years ago
  38. c5cb8e2 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). by Roland Scheidegger · 18 years ago
  39. 28e7219 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)). by Roland Scheidegger · 18 years ago
  40. d016d4e Fix a leak of the screen's option cache on cleanup (copied from radeon). by Eric Anholt · 18 years ago
  41. 14ec34d Simplify the immediate and displaylist code. Treat VertexAttrib*ARB by Keith Whitwell · 18 years ago
  42. 2216aac comment out EXTRA_LIB_PATH, ?= causes problems on HP-UX by Brian Paul · 18 years ago
  43. bb2180d Fixes from Christopher Bell: by Brian Paul · 18 years ago
  44. 7d76760 remove stray tab by Brian Paul · 18 years ago
  45. d9aebd8 for VERTEX_ATTRIB_WEIGHT, use break, not return by Brian Paul · 18 years ago
  46. 4a90166 document vertex.weight hack by Brian Paul · 18 years ago
  47. 3a55750 Hack for Warcraft (bug 8060): allow 'vertex.weight' to be referenced in by Brian Paul · 18 years ago
  48. 43cc1dc fix typo in enable_parser_extensions(): s/point_parameters/vertex_blend/ by Brian Paul · 18 years ago
  49. a088f16 Consolidate common case of _mesa_set_program_error() followed by _mesa_error() by Brian Paul · 18 years ago
  50. 1f03339 updated info about glxproto.h by Brian Paul · 18 years ago
  51. d5cbb49 Dynamically allocate instruction store for tnl programs according to by Keith Whitwell · 18 years ago
  52. 74b2166 Fixes for calculating point attenuation by Keith Whitwell · 18 years ago
  53. f65ad97 Don't export NV_vertex_program as it's not supported, it confuses by Keith Whitwell · 18 years ago
  54. ac7ea94 Managed to make a commit that can't build... Sorry again... by Rune Petersen · 18 years ago
  55. c78e895 get rid of GL_BOOLEAN definition (bug 8113) by Brian Paul · 18 years ago
  56. e08557a by Jouk Jansen · 18 years ago
  57. 8cf3c85 by Jouk Jansen · 18 years ago
  58. 014bfda fog state atom contains (only) fog params necessary for tcl. Must not be emitted if vertex progs are enabled as it overlaps vertex param #94. by Roland Scheidegger · 18 years ago
  59. 5300e82 add missing change to skip low impact RAST fallback... Sorry. by Rune Petersen · 18 years ago
  60. 5b4e7cd fix the presumably broken check for the allow_large_textures and vblank_mode options (same as bug 8042). by Roland Scheidegger · 18 years ago
  61. 9165046 make sure vertex programs are only enabled on the hw when they are really enabled, not just when a program enables vertex progs (could still be not enabled due to some error). Otherwise the hw potentially would try to execute a not valid (not set up at all) vertex program, likely leading to lockups. Hopefully fixes #8060. by Roland Scheidegger · 18 years ago
  62. 6ec2d37 Catch a few more cases of using a message reg as an instruction source arg. by Keith Whitwell · 18 years ago
  63. db0e53a fix a couple of cases where a message reg is used as an instruction source. by Keith Whitwell · 18 years ago
  64. 75faa1e Add API description for GLX_SGI_swap_control. by Ian Romanick · 18 years ago
  65. d6c675f Fix problems with vertex program protocol by Ian Romanick · 18 years ago
  66. 934a2dc re-apply shader fix. appears to have been reverted by mistake. by Rune Petersen · 18 years ago
  67. d9cb0fc version bump by Brian Paul · 18 years ago
  68. b237d7f When using the old technique to set up the front buffer mapping, there by Keith Whitwell · 18 years ago
  69. 6c44c53 update link by Brian Paul · 18 years ago
  70. c09458c remove VERSIONS from tarballs by Brian Paul · 18 years ago
  71. 761d874 updated 6.5.1 relnotes link by Brian Paul · 18 years ago
  72. e2859ea Convert VERSIONS and RELNOTES-6.5.1 to html, update links to them. by Brian Paul · 18 years ago
  73. 3cbfef3 Give the user posibility to choose speed over correctness. by Rune Petersen · 18 years ago
  74. 52e36cd check if ext->name is null before strcmp() by Brian Paul · 18 years ago
  75. 901f83f do not abort with not supported vertex prog output configuration, fallback instead by Roland Scheidegger · 18 years ago
  76. 7986cfb remove extension defines/protos that are now in glext.h by Brian Paul · 18 years ago
  77. 3cd07d2 latest version from OpenGL ARB by Brian Paul · 18 years ago
  78. cdb12bd Handle API and dispatch table changes that removed a bunch of extension entry points. by Karl Schultz · 18 years ago
  79. c6f8176 make prog2 a legal program (texture reference fix) by Brian Paul · 18 years ago
  80. b7fc1c3 Check that we don't try to reference more than one target of a texture unit. by Brian Paul · 18 years ago
  81. f6de865 s/0/VERT_RESULT_HPOS/ by Brian Paul · 18 years ago
  82. a70d564 Add missing parenthesis so that glXSwapIntervalSGI protocol is by Ian Romanick · 18 years ago
  83. c7f571e Add missing vec4 instructions to the interpreter. Other cosmetic changes. by Michal Krol · 18 years ago
  84. 8a43667 fix Xlib driver mem leaks by Brian Paul · 18 years ago
  85. 6c06ce2 Use XAddExtension() to register an XCloseDisplay() callback function. by Brian Paul · 18 years ago
  86. 12a5f81 init a local var to silence warning by Brian Paul · 18 years ago
  87. a974aaa Minor r200 vertex program cleanups. Remove disabled leftovers from r300 vertex program code. Fix authors. Correct slightly wrong check to determine if ran out of temps. Simplify check to determine if ran out of max instructions. Correctly report used native temps. Always kick off program translation when ProgramStringNotify is called (otherwise the reported native resources used queried might be wrong). by Roland Scheidegger · 18 years ago
  88. e6de1ed fix initialization of native resource usage of vertex/fragment programs by Roland Scheidegger · 18 years ago
  89. ef3f00f fix typo causing a segfault when a vertex program uses more than 96 parameters by Roland Scheidegger · 18 years ago
  90. 8334c8a Move call to _swrast_update_rasterflags() since it depends on the by Brian Paul · 18 years ago
  91. f7c4dc0 _mesa_debug() should be a no-op when not compiled with DEBUG defined. by Brian Paul · 18 years ago
  92. 3984714 set 6.5.1 release to Aug 31 by Brian Paul · 18 years ago
  93. 70c2d51 remove assertion that referenced &glSetFenceNV for debug test by Brian Paul · 18 years ago
  94. 0aab798 replace abort with _mesa_problem() by Brian Paul · 18 years ago
  95. 8d675aa Deprecate GL_EXT_vertex_weighting. by Ian Romanick · 18 years ago
  96. dfdd0b4 More static dispatch function removal. by Ian Romanick · 18 years ago
  97. fc5b57b Clean up GLX function exports. by Ian Romanick · 18 years ago
  98. af1dc7e move initialization code aroudn so glPointParameter isn't called before checking the extension is present by Roland Scheidegger · 18 years ago
  99. b5a2fc1 Check mesa_vp->Base.NumInstructions == 0 instead of mesa_vp->Base.String to by Brian Paul · 18 years ago
  100. 258751f Add two new gl_function methods. dispatch_name returns the name of by Ian Romanick · 18 years ago