1Mesa 7.10.3 Release Notes / June 13, 2011 2========================================= 3 4Mesa 7.10.3 is a bug fix release which fixes bugs found since the 7.10.2 5release. 6 7Mesa 7.10.3 implements the OpenGL 2.1 API, but the version reported by 8glGetString(GL_VERSION) depends on the particular driver being used. 9Some drivers don't support all the features required in OpenGL 2.1. 10 11See the :doc:`Compiling/Installing page <../install>` for 12prerequisites for DRI hardware acceleration. 13 14MD5 checksums 15------------- 16 17:: 18 19 d77b02034c11d6c2a55c07f82367d780 MesaLib-7.10.3.tar.gz 20 8c38fe8266be8e1ed1d84076ba5a703b MesaLib-7.10.3.tar.bz2 21 614d063ecd170940d9ae7b355d365d59 MesaLib-7.10.3.zip 22 8768fd562ede7ed763d92b2d22232d7a MesaGLUT-7.10.3.tar.gz 23 1496415b89da9549f0f3b34d9622e2e2 MesaGLUT-7.10.3.tar.bz2 24 1f29d0e7398fd3bf9f36f5db02941198 MesaGLUT-7.10.3.zip 25 26New features 27------------ 28 29None. 30 31Bug fixes 32--------- 33 34This list is likely incomplete. 35 36- `Bug 29162 <https://bugs.freedesktop.org/show_bug.cgi?id=29162>`__ - 37 mesa/darwin is severly broken 38- `Bug 31590 <https://bugs.freedesktop.org/show_bug.cgi?id=31590>`__ - 39 Black space between colors on mole hill example 40- `Bug 32395 <https://bugs.freedesktop.org/show_bug.cgi?id=32395>`__ - 41 [glsl] Incorrect code generation for shadow2DProj() with bias 42- `Bug 32564 <https://bugs.freedesktop.org/show_bug.cgi?id=32564>`__ - 43 [llvmpipe] prog: Unknown command line argument '-disable-mmx'. Try: 44 'prog -help' with llvm-2.9svn 45- `Bug 32835 <https://bugs.freedesktop.org/show_bug.cgi?id=32835>`__ - 46 [glsl] recursive #define results in infinite stack recursion 47- `Bug 33303 <https://bugs.freedesktop.org/show_bug.cgi?id=33303>`__ - 48 [glsl] ir_constant_expression.cpp:72: virtual ir_constant\* 49 ir_expression::constant_expression_value(): Assertion 50 \`op[0]->type->base_type == op[1]->type->base_type' failed. 51- `Bug 33314 <https://bugs.freedesktop.org/show_bug.cgi?id=33314>`__ - 52 [glsl] ir_constant_expression.cpp:122: virtual ir_constant\* 53 ir_expression::constant_expression_value(): Assertion 54 \`op[0]->type->base_type == GLSL_TYPE_BOOL' failed. 55- `Bug 33512 <https://bugs.freedesktop.org/show_bug.cgi?id=33512>`__ - 56 [SNB] case ogles2conform/GL/gl_FragCoord/gl_FragCoord_xy_frag.test 57 and gl_FragCoord_w_frag.test fail 58- `Bug 34280 <https://bugs.freedesktop.org/show_bug.cgi?id=34280>`__ - 59 r200 mesa-7.10 font distortion 60- `Bug 34321 <https://bugs.freedesktop.org/show_bug.cgi?id=34321>`__ - 61 The ARB_fragment_program subset of ARB_draw_buffers not implemented 62- `Bug 35603 <https://bugs.freedesktop.org/show_bug.cgi?id=35603>`__ - 63 GLSL compiler freezes compiling shaders 64- `Bug 36173 <https://bugs.freedesktop.org/show_bug.cgi?id=36173>`__ - 65 struct renderbuffer's 'format' field never set when using FBO 66- `Bug 36238 <https://bugs.freedesktop.org/show_bug.cgi?id=36238>`__ - 67 Mesa release files don't contain scons control files 68- `Bug 36410 <https://bugs.freedesktop.org/show_bug.cgi?id=36410>`__ - 69 [SNB] Rendering errors in 3DMMES subtest taiji 70- `Bug 36527 <https://bugs.freedesktop.org/show_bug.cgi?id=36527>`__ - 71 [wine] Wolfenstein: Failed to translate rgb instruction. 72- `Bug 36651 <https://bugs.freedesktop.org/show_bug.cgi?id=36651>`__ - 73 mesa requires bison and flex to build but configure does not check 74 for them 75- `Bug 36738 <https://bugs.freedesktop.org/show_bug.cgi?id=36738>`__ - 76 Openarena crash with r300g, swrastg + llvm > 2.8 77- `Bug 37648 <https://bugs.freedesktop.org/show_bug.cgi?id=37648>`__ - 78 Logic error in mesa/main/teximage.c:texsubimage 79- `Bug 37739 <https://bugs.freedesktop.org/show_bug.cgi?id=37739>`__ - 80 Color clear of FBO without color buffer crashes 81 82Changes 83------- 84 85The full set of changes can be viewed by using the following GIT 86command: 87 88:: 89 90 git log mesa-7.10.2..mesa-7.10.3 91 92Alan Hourihane (1): 93 94- Check for out of memory when creating fence 95 96Alex Buell (1): 97 98- configure: bump LIBDRM_REQUIRED to 2.4.24 99 100Alex Deucher (2): 101 102- r600c: add new pci ids 103- r600g: add new pci ids 104 105Brian Paul (19): 106 107- docs: add link to 7.10.2 release notes 108- scons: remove dangling reference to state_trackers/python/SConscript 109- Makefile: add missing Scons files 110- llvmpipe: document issue with LLVM 2.8 and earlier with AVX 111- docs: replace llvmpipe/README with docs/llvmpipe.html 112- glsl: add static qualifier to silence warning 113- glsl: add cast to silence signed/unsigned comparison warning 114- mesa: s/height/depth/ in texsubimage() 115- mesa: fix void pointer arithmetic warnings 116- mesa: add some missing GLAPIENTRY keywords 117- mesa: check that flex/bison are installed 118- st/mesa: fix incorrect texture level/face/slice accesses 119- draw: fix edge flag handling in clipper (for unfilled 120 tris/quads/polygons) 121- vbo: check array indexes to prevent negative indexing 122- vbo: remove node->count > 0 test in vbo_save_playback_vertex_list() 123- st/mesa: fix software accum buffer format bug 124- mesa: add include/c99/inttypes.h include/c99/stdbool.h 125 include/c99/stdint.h files to tarballs 126- docs: 7.10.3 release notes skeleton file, links 127- mesa: bump version to 7.10.3 128 129Carl Worth (2): 130 131- glcpp: Simplify calling convention of parser's active_list functions 132- glcpp: Fix attempts to expand recursive macros infinitely (bug 133 #32835). 134 135Dave Airlie (1): 136 137- st/mesa: fix compressed mipmap generation. 138 139Eric Anholt (19): 140 141- i965: Fix the VS thread limits for GT1, and clarify the WM limits on 142 both. 143- glsl: Avoid cascading errors when looking for a scalar boolean and 144 failing. 145- glsl: Semantically check the RHS of \`&&' even when short-circuiting. 146- glsl: Semantically check the RHS of \`||' even when short-circuiting. 147- glsl: When we've emitted a semantic error for ==, return a bool 148 constant. 149- glsl: Perform type checking on "^^" operands. 150- intel: Use \_mesa_base_tex_format for FBO texture attachments. 151- swrast: Don't assert against glReadPixels of GL_RED and GL_RG. 152- mesa: Add a gl_renderbuffer.RowStride field like textures have. 153- mesa: Add a function to set up the default renderbuffer accessors. 154- intel: Use Mesa core's renderbuffer accessors for depth. 155- mesa: Use \_mesa_get_format_bytes to refactor out the RB 156 get_pointer\_\* 157- mesa: Use \_mesa_get_format_bytes to refactor out the RB get_row\_\* 158- mesa: Add renderbuffer accessors for R8/RG88/R16/RG1616. 159- swrast: Don't try to adjust_colors for <8bpc when handling R16, 160 RG1616. 161- intel: Use mesa core's R8, RG88, R16, RG1616 RB accessors. 162- Revert "intel: Add spans code for the ARB_texture_rg support." 163- mesa: Add support for the ARB_fragment_program part of 164 ARB_draw_buffers. 165- mesa: Add support for OPTION ATI_draw_buffers to ARB_fp. 166 167Hans de Goede (1): 168 169- texstore: fix regression stricter check for memcpy path for unorm88 170 and unorm1616 171 172Henri Verbeet (3): 173 174- mesa: Also update the color draw buffer if it's explicitly set to 175 GL_NONE. 176- glx: Destroy dri2Hash on DRI2 display destruction. 177- glx: Only remove the glx_display from the list after it's destroyed. 178 179Ian Romanick (9): 180 181- docs: Add 7.10.2 md5sums 182- glsl: Fix off-by-one error setting max_array_access for non-constant 183 indexing 184- ir_to_mesa: Handle shadow compare w/projection and LOD bias correctly 185- intel: Fix ROUND_DOWN_TO macro 186- glsl: Regenerate compiler and glcpp files from cherry picks 187- i965: Remove hint_gs_always and resulting dead code 188- mesa: Don't try to clear a NULL renderbuffer 189- mesa: Ignore blits to/from missing buffers 190- docs: Add list of bugs fixed in 7.10.3 release 191 192Jeremy Huddleston (18): 193 194- apple: Update GL specs 195- apple: Rename glcontextmodes.[ch] to glxconfig.[ch] 196- apple: Rename \__GLcontextModes to struct glx_config 197- apple: Rename GLXcontext 198- apple: Re-add driContext and do_destroy 199- apple: Rename \_gl_context_modes_find_visual to 200 glx_config_find_visual 201- apple: Rename GLXcontext 202- apple: Change from XExtDisplayInfo to struct glx_display 203- apple: ifdef out come glapi-foo on darwin 204- glx: Dead code removal 205- apple: Build darwin using applegl rather than indirect 206- apple: Fix build failures in applegl_glx.c 207- darwin: Define GALLIUM_DRIVERS_DIRS in darwin config 208- apple: Package applegl source into MesaLib tarball 209- darwin: Set VG_LIB_{NAME,GLOB} to fix make install 210- darwin: Don't link against libGL when building libOSMesa 211- darwin: Fix VG_LIB_GLOB to also match the unversioned symlink 212- osmesa: Fix missing symbols when GLX_INDIRECT_RENDERING is defined. 213 214José Fonseca (13): 215 216- llvmpipe: Update readme. 217- mesa: GL_PROVOKING_VERTEX_EXT is a GLenum, not GLboolean. 218- mesa: Fix GetVertexAttrib\* inside display lists. 219- draw: Fix draw_variant_output::format's type. 220- gallivm: Tell LLVM to not assume a 16-byte aligned stack on x86. 221- gallivm: Fix for dynamically linked LLVM 2.8 library. 222- st/wgl: Adjust the pbuffer invisible window size. 223- st/wgl: Fix debug output format specifiers of 224 stw_framebuffer_get_size(). 225- st/wgl: Prevent spurious framebuffer sizes when the window is 226 minimized. 227- st/wgl: Cope with zero width/height windows. 228- st/wgl: Allow to create pbuffers bigger than the desktop. 229- st/wgl: Remove buggy assertion. 230- wgl: Don't hold on to user supplied HDC. 231 232Kenneth Graunke (10): 233 234- i965/fs: Switch W and 1/W in Sandybridge interpolation setup. 235- i965: Refactor Sandybridge implied move handling. 236- i965: Resolve implied moves in brw_dp_READ_4_vs_relative. 237- intel: Add IS_GT2 macro for recognizing Sandybridge GT2 systems. 238- i965: Allocate the whole URB to the VS and fix calculations for Gen6. 239- intel: Support glCopyTexImage() from ARGB8888 to XRGB8888. 240- glsl: Fix memory error when creating the supported version string. 241- glsl: Regenerate autogenerated file builtin_function.cpp. 242- i965: Rename various gen6 #defines to match the documentation. 243- i965: Never enable the GS on Gen6. 244 245Kostas Georgiou (1): 246 247- r600c/g: Add pci id for FirePro 2270 248 249Marek Olšák (18): 250 251- tgsi/ureg: bump the limit of immediates 252- st/mesa: fix changing internal format via RenderbufferStorage 253- st/mesa: GenerateMipmap should not be killed by conditional rendering 254- swrast: BlitFramebuffer should not be killed by conditional rendering 255- st/mesa: BlitFramebuffer should not be killed by conditional 256 rendering 257- st/mesa: CopyTex(Sub)Image should not be killed by conditional 258 rendering 259- st/mesa: conditional rendering should not kill texture decompression 260 via blit 261- mesa: forbid UseProgram to be called inside Begin/End 262- mesa: UseShaderProgramEXT and Uniform\* shouldn't be allowed inside 263 Begin/End 264- mesa: queries of non-existent FBO attachments should return 265 INVALID_OPERATION 266- r300g: fix draw_vbo splitting on r3xx-r4xx 267- r300g: fix texturing with non-3D textures and wrap R mode set to 268 sample border 269- r300g: fix occlusion queries when depth test is disabled or zbuffer 270 is missing 271- r300g: clear can be killed by render condition 272- st/mesa: remove asserts in st_texture_image_copy 273- mesa: fix up assertion in \_mesa_source_buffer_exists 274- mesa: invalidate framebuffer if internal format of renderbuffer is 275 changed 276- mesa: return after invalidating renderbuffer 277 278Matt Turner (1): 279 280- r300/compiler: align memory allocations to 8-bytes 281 282Tom Stellard (3): 283 284- r300/compiler: Fix incorrect presubtract conversion 285- r300/compiler: Fix dataflow analysis bug with ELSE blocks 286- r300/compiler: Limit instructions to 3 source selects 287 288Vinson Lee (1): 289 290- gallivm: Disable MMX-disabling code on llvm-2.9. 291 292Zou Nan hai (1): 293 294- i965: Align interleaved URB write length to 2 295 296pepp (1): 297 298- st/mesa: assign renderbuffer's format field when allocating storage 299