Erik Faye-Lund | 4d06683 | 2020-06-12 20:09:42 +0200 | [diff] [blame] | 1 | Mesa 10.4.6 Release Notes / March 06, 2015 |
| 2 | ========================================== |
| 3 | |
| 4 | Mesa 10.4.6 is a bug fix release which fixes bugs found since the 10.4.5 |
| 5 | release. |
| 6 | |
| 7 | Mesa 10.4.6 implements the OpenGL 3.3 API, but the version reported by |
| 8 | glGetString(GL_VERSION) or glGetIntegerv(GL_MAJOR_VERSION) / |
| 9 | glGetIntegerv(GL_MINOR_VERSION) depends on the particular driver being |
| 10 | used. Some drivers don't support all the features required in OpenGL |
| 11 | 3.3. OpenGL 3.3 is **only** available if requested at context creation |
| 12 | because compatibility contexts are not supported. |
| 13 | |
| 14 | SHA256 checksums |
| 15 | ---------------- |
| 16 | |
| 17 | :: |
| 18 | |
| 19 | 46c9082142e811c01e49a2c332a9ac0a1eb98f2908985fb9df216539d7eaeaf4 MesaLib-10.4.6.tar.gz |
| 20 | d8baedd20e79ccd98a5a7b05e23d59a30892e68de1fcc057ca6873dafca02735 MesaLib-10.4.6.tar.bz2 |
| 21 | 6aded6eac7f0d4d55117b8b581d8424710bbb4c768fc90f7b881f29311a751aa MesaLib-10.4.6.zip |
| 22 | |
| 23 | New features |
| 24 | ------------ |
| 25 | |
| 26 | None |
| 27 | |
| 28 | Bug fixes |
| 29 | --------- |
| 30 | |
| 31 | This list is likely incomplete. |
| 32 | |
| 33 | - `Bug 45348 <https://bugs.freedesktop.org/show_bug.cgi?id=45348>`__ - |
| 34 | [swrast] piglit fbo-drawbuffers-arbfp regression |
| 35 | - `Bug 84613 <https://bugs.freedesktop.org/show_bug.cgi?id=84613>`__ - |
| 36 | [G965, bisected] piglit regressions : glslparsertest.glsl2 |
| 37 | - `Bug 87516 <https://bugs.freedesktop.org/show_bug.cgi?id=87516>`__ - |
| 38 | glProgramBinary violates spec |
| 39 | - `Bug 88885 <https://bugs.freedesktop.org/show_bug.cgi?id=88885>`__ - |
| 40 | Transform feedback uses incorrect interleaving if a previous draw did |
| 41 | not write gl_Position |
| 42 | - `Bug 89180 <https://bugs.freedesktop.org/show_bug.cgi?id=89180>`__ - |
| 43 | [IVB regression] Rendering issues in Mass Effect through VMware |
| 44 | Workstation |
| 45 | |
| 46 | Changes |
| 47 | ------- |
| 48 | |
| 49 | Abdiel Janulgue (2): |
| 50 | |
| 51 | - glsl: Don't optimize min/max into saturate when EmitNoSat is set |
| 52 | - st/mesa: For vertex shaders, don't emit saturate when SM 3.0 is |
| 53 | unsupported |
| 54 | |
| 55 | Andreas Boll (1): |
| 56 | |
| 57 | - glx: Fix returned values of GLX_RENDERER_PREFERRED_PROFILE_MESA |
| 58 | |
| 59 | Brian Paul (2): |
| 60 | |
| 61 | - swrast: fix multiple color buffer writing |
| 62 | - st/mesa: fix sampler view reference counting bug in glDraw/CopyPixels |
| 63 | |
| 64 | Chris Forbes (1): |
| 65 | |
| 66 | - i965/gs: Check newly-generated GS-out VUE map against correct stage |
| 67 | |
| 68 | Eduardo Lima Mitev (1): |
| 69 | |
| 70 | - mesa: Fix error validating args for TexSubImage3D |
| 71 | |
| 72 | Emil Velikov (6): |
| 73 | |
| 74 | - docs: Add sha256 sums for the 10.4.5 release |
| 75 | - install-lib-links: remove the .install-lib-links file |
| 76 | - Revert "mesa: Correct backwards NULL check." |
| 77 | - mesa: cherry-pick the second half of commit 2aa71e9485a |
| 78 | - Revert "gallivm: Update for RTDyldMemoryManager becoming an |
| 79 | unique_ptr." |
| 80 | - Update version to 10.4.6 |
| 81 | |
| 82 | Ian Romanick (3): |
| 83 | |
| 84 | - mesa: Add missing error checks in \_mesa_ProgramBinary |
| 85 | - mesa: Ensure that length is set to zero in \_mesa_GetProgramBinary |
| 86 | - mesa: Always generate GL_INVALID_OPERATION in \_mesa_GetProgramBinary |
| 87 | |
| 88 | Jonathan Gray (1): |
| 89 | |
| 90 | - auxilary/os: correct sysctl use in os_get_total_physical_memory() |
| 91 | |
| 92 | José Fonseca (1): |
| 93 | |
| 94 | - gallivm: Update for RTDyldMemoryManager becoming an unique_ptr. |
| 95 | |
| 96 | Leo Liu (1): |
| 97 | |
| 98 | - st/omx/dec/h264: fix picture out-of-order with poc type 0 v2 |
| 99 | |
| 100 | Lucas Stach (1): |
| 101 | |
| 102 | - install-lib-links: don't depend on .libs directory |
| 103 | |
| 104 | Marek Olšák (2): |
| 105 | |
| 106 | - vbo: fix an unitialized-variable warning |
| 107 | - radeonsi: fix point sprites |
| 108 | |
| 109 | Matt Turner (4): |
| 110 | |
| 111 | - glsl: Rewrite and fix min/max to saturate optimization. |
| 112 | - mesa: Correct backwards NULL check. |
| 113 | - i965/fs: Don't use backend_visitor::instructions after creating the |
| 114 | CFG. |
| 115 | - mesa: Correct backwards NULL check. |