summaryrefslogtreecommitdiffstats
path: root/docs/relnotes
Commit message (Collapse)AuthorAgeFilesLines
* docs: add missed i965 feature to relnotesIan Romanick2015-11-291-0/+1
| | | | | | | | | Trivial. GL_ARB_fragment_layer_viewport support was added in 8c902a58 by Ken. Signed-off-by: Ian Romanick <[email protected]> Cc: "11.1" <[email protected]> (cherry picked from commit 9b41489cb5ae7ef9157e8e6b42f3621a871c75a3)
* docs: add missed freedreno features to relnotesIlia Mirkin2015-11-291-0/+5
| | | | | | Signed-off-by: Ilia Mirkin <[email protected]> Cc: "11.1" <[email protected]> (cherry picked from commit e4c1221d367405debdb010b249c633355a3eafe9)
* docs: add sha256 checksums for 11.0.6Emil Velikov2015-11-211-1/+2
| | | | | Signed-off-by: Emil Velikov <[email protected]> (cherry picked from commit 2555e000fc1771dd231207247b5d9dfec4600fe8)
* docs: add release notes for 11.0.6Emil Velikov2015-11-211-0/+144
| | | | | Signed-off-by: Emil Velikov <[email protected]> (cherry picked from commit 04fd3a6f629b5098cc2a4da1f2392678349ecf56)
* freedreno/a4xx: add missing formats to enable ARB_vertex_type_2_10_10_10_revIlia Mirkin2015-11-201-1/+1
| | | | | | | Same as commit 84d087aea but for a4xx. The RE'd enums had the same issue too. Signed-off-by: Ilia Mirkin <[email protected]>
* docs: mention GL 3.3 support for VMware driver in Mesa 11.1 relnotesBrian Paul2015-11-201-0/+2
| | | | Signed-off-by: Brian Paul <[email protected]>
* docs: mark GL_AMD_performance_monitor for nv50Samuel Pitoiset2015-11-201-0/+1
| | | | | Signed-off-by: Samuel Pitoiset <[email protected]> Acked-by: Ilia Mirkin <[email protected]>
* docs: Add GL_EXT_shader_samples_identical to the release notesIan Romanick2015-11-201-0/+1
| | | | | | Trivial Signed-off-by: Ian Romanick <[email protected]>
* mesa: re-enable KHR_debug for ES contextsBoyan Ding2015-11-201-0/+1
| | | | | | | With the earlier issues resolved we can expose the extension. Signed-off-by: Boyan Ding <[email protected]> Reviewed-by: Emil Velikov <[email protected]>
* docs: GL3.1 for a3xx and a4xxIlia Mirkin2015-11-191-0/+1
| | | | Signed-off-by: Ilia Mirkin <[email protected]>
* mesa: enable EXT_blend_func_extended if the driver supports the ARB versionRyan Houdek2015-11-191-0/+1
| | | | | Reviewed-by: Ian Romanick <[email protected]> Reviewed-by: Ilia Mirkin <[email protected]>
* freedreno/a4xx: add fake RGTC support (required for GL3)Rob Clark2015-11-181-1/+1
| | | | | | | | | | The a4xx bits corresponding to 'freedreno/a3xx: add fake RGTC support (required for GL3)' TODO some more r/e.. maybe we get lucky and hw supports some of this directly? For now this will help us enable gl3. Signed-off-by: Rob Clark <[email protected]>
* freedreno: add support for conditional rendering, required for GL3.0Ilia Mirkin2015-11-181-0/+1
| | | | | | | | | A smarter implementation would make it possible to attach this to emit state for the BY_REGION versions to avoid breaking the tiling. But this is a start. Signed-off-by: Ilia Mirkin <[email protected]> Signed-off-by: Rob Clark <[email protected]>
* freedreno/a3xx: add fake RGTC support (required for GL3)Ilia Mirkin2015-11-181-0/+1
| | | | | | | | | | | | Also throw in LATC while we're at it (same exact format). This could be made more efficient by keeping a shadow compressed texture to use for returning at map time. However... it's not worth it for now... presumably compressed textures are not updated often. Lastly fix up Z32S8 transfers to non-0 layers. Signed-off-by: Ilia Mirkin <[email protected]> Signed-off-by: Rob Clark <[email protected]>
* freedreno/a3xx: add missing formats to enable ARB_vertex_type_2_10_10_10_revIlia Mirkin2015-11-181-0/+1
| | | | | | | | | The previously RE'd formats were from an ES driver implementing OES_vertex_type_10_10_10_2 and thus backwards. A future change could add the 2_10_10_10 support. Signed-off-by: Ilia Mirkin <[email protected]> Signed-off-by: Rob Clark <[email protected]>
* docs: Add 16x MSAA on i965 to the release notesNeil Roberts2015-11-161-0/+1
| | | | Signed-off-by: Neil Roberts <[email protected]>
* nv50,nvc0: add ARB_clear_texture supportIlia Mirkin2015-11-111-0/+1
| | | | Signed-off-by: Ilia Mirkin <[email protected]>
* docs: add sha256 checksums for 11.0.5Emil Velikov2015-11-111-1/+2
| | | | | Signed-off-by: Emil Velikov <[email protected]> (cherry picked from commit 66c949d0a19b1e601243be22b6506528b866388b)
* docs: add release notes for 11.0.5Emil Velikov2015-11-111-0/+173
| | | | | Signed-off-by: Emil Velikov <[email protected]> (cherry picked from commit ee57c22141c42d9b511a7dfa5971c4428cd1c6e7)
* r600g: Implement ARB_texture_viewGlenn Kennard2015-11-111-1/+1
| | | | | | Signed-off-by: Glenn Kennard <[email protected]> Reviewed-by: Marek Olšák <[email protected]> Signed-off-by: Dave Airlie <[email protected]>
* docs: note that ARB_copy_image was added to nv50, nvc0 in this releaseIlia Mirkin2015-11-091-1/+1
| | | | Signed-off-by: Ilia Mirkin <[email protected]>
* mesa: expose support for GL_EXT_buffer_storageRyan Houdek2015-11-041-0/+1
| | | | | | | | | This extension requires ES 3.1 since it relies on glMemoryBarrier. For testing purposes I temporarily moved glMemoryBarrier to be an ES 3.0 function. This has been tested with the piglit in the ML and the Dolphin emulator. Reviewed-by: Ilia Mirkin <[email protected]>
* docs: Mark AoA as done for i965Timothy Arceri2015-11-041-0/+1
| | | | Reviewed-by: Ian Romanick <[email protected]>
* mesa: expose support for OES/EXT_draw_elements_base_vertex to OpenGL ESRyan Houdek2015-11-011-0/+2
| | | | | | | This has been tested with the piglits in the mailing list and on the Dolphin emulator. Reviewed-by: Ilia Mirkin <[email protected]>
* i965: enable ARB_shader_clock on gen7+Emil Velikov2015-10-301-0/+1
| | | | | Signed-off-by: Emil Velikov <[email protected]> Reviewed-by: Matt Turner <[email protected]>
* st/mesa: implement ARB_copy_imageMarek Olšák2015-10-281-0/+1
| | | | | | I wonder if the craziness was worth it. Reviewed-by: Brian Paul <[email protected]>
* docs: add sha256 checksums for 11.0.4Emil Velikov2015-10-251-1/+2
| | | | | Signed-off-by: Emil Velikov <[email protected]> (cherry picked from commit ec14e6f8fd05999b482e0785d8cd286042c9c254)
* docs: add release notes for 11.0.4Emil Velikov2015-10-251-0/+167
| | | | | Signed-off-by: Emil Velikov <[email protected]> (cherry picked from commit 31bf24703193cc23961923e01548b1acb2760a93)
* docs: update relnotes to mention virgl driver.Dave Airlie2015-10-231-0/+1
|
* i965: Advertise ARB_shader_stencil_export (gen9+)Ben Widawsky2015-10-211-0/+1
| | | | | Signed-off-by: Ben Widawsky <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]>
* radeonsi: add support for ARB_texture_viewMarek Olšák2015-10-201-0/+1
| | | | | | | | | | | | All tests pass. We don't need to do much - just set CUBE if the view target is CUBE or CUBE_ARRAY, otherwise set the resource target. The reason this can be so simple is that texture instructions have a greater effect on the target than the sampler view. Thanks Glenn for the piglit test. Reviewed-by: Michel Dänzer <[email protected]>
* r600g: Enable GL_ARB_gpu_shader5 extensionGlenn Kennard2015-10-131-0/+1
| | | | | Signed-off-by: Glenn Kennard <[email protected]> Signed-off-by: Dave Airlie <[email protected]>
* docs: add sha256 checksums for 11.0.3Emil Velikov2015-10-101-1/+2
| | | | | Signed-off-by: Emil Velikov <[email protected]> (cherry picked from commit b4bfea0094d0037b1f66f3437e44e333f2f0c3f6)
* docs: add release notes for 11.0.3Emil Velikov2015-10-101-0/+184
| | | | | Signed-off-by: Emil Velikov <[email protected]> (cherry picked from commit 914966befcd57764941405707d8f57d3e7e7f768)
* docs/relnotes: document EGL_KHR_create_context on llvmpipe and softpipeBoyan Ding2015-10-081-0/+1
| | | | Signed-off-by: Boyan Ding <[email protected]>
* Revert "mesa: enable KHR_debug for ES contexts"Emil Velikov2015-10-071-1/+0
| | | | | | | This reverts commit b69cfbdf18fa64606a76761b20bc268f4ac731e5. This isn't quite baked yet. Seems that despite building the ES piglits, none of them got executed.
* egl/dri2: enable EGL_KHR_gl_colorspace for swrastEmil Velikov2015-10-071-0/+1
| | | | | | | | | | No driver changes needed for softpipe/llvmpipe - things just work. v2: Whitespace fixes. Signed-off-by: Emil Velikov <[email protected]> Reviewed-by: Boyan Ding <[email protected]> Acked-by: Alex Deucher <[email protected]>
* mesa: enable KHR_debug for ES contextsEmil Velikov2015-10-071-1/+2
| | | | Signed-off-by: Emil Velikov <[email protected]>
* docs: add sha256 checksums for 10.6.9Emil Velikov2015-10-031-1/+2
| | | | | Signed-off-by: Emil Velikov <[email protected]> (cherry picked from commit 8957b696f9cc8a92b2c160c551c34545447ec28a)
* docs: add release notes for 10.6.9Emil Velikov2015-10-031-0/+129
| | | | | Signed-off-by: Emil Velikov <[email protected]> (cherry picked from commit ab9aacce2d26a802bac81fc25748320428996692)
* docs: add sha256 checksums for 11.0.2Emil Velikov2015-09-291-1/+2
| | | | | Signed-off-by: Emil Velikov <[email protected]> (cherry picked from commit 4c0b48461269d3ede0c5446d86ebe3e81f16788e)
* docs: add release notes for 11.0.2Emil Velikov2015-09-291-0/+84
| | | | | Signed-off-by: Emil Velikov <[email protected]> (cherry picked from commit 51e0b06d9916e126060c0d218de1aaa4e5a4ce26)
* docs: mention ARB_shader_storage_buffer_object on 11.1.0 release notesSamuel Iglesias Gonsalvez2015-09-281-0/+1
| | | | | Signed-off-by: Samuel Iglesias Gonsalvez <[email protected]> Reviewed-by: Timothy Arceri <[email protected]>
* docs: add sha256 checksums for 11.0.1Emil Velikov2015-09-261-1/+2
| | | | | Signed-off-by: Emil Velikov <[email protected]> (cherry picked from commit 7f1a77ae664cca29208edc32ff82dc7ff4faa02b)
* docs: add release notes for 11.0.1Emil Velikov2015-09-261-0/+133
| | | | | Signed-off-by: Emil Velikov <[email protected]> (cherry picked from commit bcb9e1d26ba4198359300b50e5c188977cef932e)
* i965: add ARB_texture_barrier supportIlia Mirkin2015-09-231-0/+1
| | | | | Signed-off-by: Ilia Mirkin <[email protected]> Reviewed-by: Jason Ekstrand <[email protected]>
* radeonsi: implement TXQS supportIlia Mirkin2015-09-211-1/+1
| | | | | | Signed-off-by: Ilia Mirkin <[email protected]> Tested-by: Fredrik Bruhn <[email protected]> Reviewed-by: Marek Olšák <[email protected]>
* docs: add sha256 checksums for 10.6.8Emil Velikov2015-09-201-1/+2
| | | | | Signed-off-by: Emil Velikov <[email protected]> (cherry picked from commit 02387926addc62198c9b684f4f51f7cbe06b3e25)
* docs: add release notes for 10.6.8Emil Velikov2015-09-201-0/+135
| | | | | Signed-off-by: Emil Velikov <[email protected]> (cherry picked from commit 91c6302734574e91424a7ccb52b6368b712366cc)
* freedreno/a3xx: add support for dual-source blendingIlia Mirkin2015-09-161-0/+1
| | | | Signed-off-by: Ilia Mirkin <[email protected]>