summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)AuthorFilesLines
2015-05-25docs: Mark ARB_cull_distance as in progressTobias Klausmann1-1/+1
Signed-off-by: Tobias Klausmann <tobias.johannes.klausmann@mni.thm.de> Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
2015-05-25docs: Mark ARB_shader_storage_buffer_object as in progressIago Toral Quiroga1-2/+2
Reviewed-by: Chris Forbes <chrisf@ijw.co.nz>
2015-05-24docs: add news item and link release notes for mesa 10.5.6Emil Velikov2-0/+7
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
2015-05-24docs: Add sha256sums for the 10.5.6 releaseEmil Velikov1-1/+2
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> (cherry picked from commit 8cb28bc49d7799d5accb1feb7e355ec48518e20b)
2015-05-24Add release notes for the 10.5.6 releaseEmil Velikov1-0/+146
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> (cherry picked from commit b1cf9cfb1618f0b73e673745d3c8612aea61723d)
2015-05-20GL3.txt: update softpipe ARB_gpu_shader5 statusDave Airlie1-3/+3
texture gather and it already supported the new instructions. Signed-off-by: Dave Airlie <airlied@redhat.com>
2015-05-19Post-branch version bump to 10.7.0-devel, add release notes templateEmil Velikov1-0/+58
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
2015-05-14docs/relnotes: Mark off ARB_direct_state_access for 10.6Fredrik Höglund1-0/+1
v2: Make it clear that ARB_direct_state_access is only available on drivers that support GL 2.0+ Signed-off-by: Fredrik Höglund <fredrik@kde.org> Reviewed-by: Adam Jackson <ajax@redhat.com>
2015-05-14docs: Update the ARB_direct_state_access statusFredrik Höglund1-2/+2
Signed-off-by: Fredrik Höglund <fredrik@kde.org> Reviewed-by: Adam Jackson <ajax@redhat.com>
2015-05-13softpipe: enable ARB_texture_viewRoland Scheidegger2-2/+2
Some bits were already there for texture views but some were missing. In particular for cube map views things needed to change a bit. For simplicity I ended up removing the separate face addr bit (just use the z bit) - cube arrays didn't use it already, so just follow the same logic there. (In theory using separate bits could allow for better hash function but I don't think anyone ever did some measurements of that so probably not worth the trouble, if we'd reintroduce it we'd certainly wanted to use the same logic for cube arrays and cube maps.) Also extend the seamless cube sampling to cube arrays - as there were no piglit failures before this is apparently untested, but things now generally work quite the same for cube textures and cube array textures so there hopefully shouldn't be any trouble... 49 new piglits, 47 pass, 2 fail (both due to fake multisampling). v2: incorporate Brian's feedback, add sampler view validation, function rename, formatting fixes. Reviewed-by: Brian Paul <brianp@vmware.com>
2015-05-13llvmpipe: enable ARB_texture_viewRoland Scheidegger2-1/+2
All the functionality was pretty much there, just not tested. Trivially fix up the missing pieces (take target info from view not resource), and add some missing bits for cubes. Also add some minimal debug validation to detect uninitialized target values in the view... 49 new piglits, 47 pass, 2 fail (both related to fake multisampling, not texture_view itself). No other piglit changes. v2: move sampler view validation to sampler view creation, update docs. Reviewed-by: Brian Paul <brianp@vmware.com>
2015-05-12docs/GL3: (trivial) mark some tf extensions as done for softpipe/llvmpipeRoland Scheidegger1-3/+3
Those extensions were enabled for ages already.
2015-05-11docs: add news item and link release notes for mesa 10.5.5Emil Velikov2-0/+7
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
2015-05-11docs: Add sha256 sums for the 10.5.5 releaseEmil Velikov1-1/+2
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> (cherry picked from commit 8ee1a1c08b168d7583b806a2f8a2dc2ae28be62a)
2015-05-11Add release notes for the 10.5.5 releaseEmil Velikov1-0/+94
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> (cherry picked from commit d88fb4050561a62fa824bec59ffedf2a826c2083)
2015-05-11doc/egl: Remove depreciated EGL_SOFTWAREAxel Davy1-8/+0
EGL_SOFTWARE is not supported anywhere in the code, whereas LIBGL_ALWAYS_SOFTWARE is. Reviewed-by: Dave Airlie <airlied@redhat.com> Reviewed-by: Daniel Stone <daniels@collabora.com> Signed-off-by: Axel Davy <axel.davy@ens.fr>
2015-05-08docs: Update the ARB_direct_state_access statusFredrik Höglund1-1/+1
Reviewed-by: Laura Ekstrand <laura@jlekstrand.net>
2015-05-08docs: document the LIBGL_DRI3_DISABLE environment variableMartin Peres1-0/+1
Suggested-by: Axel Davy <axel.davy@ens.fr> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Signed-off-by: Martin Peres <martin.peres@linux.intel.com>
2015-05-08docs: update ARB_vertex_attrib_64bit statusDave Airlie2-1/+2
Add to GL3.txt and release notes. Signed-off-by: Dave Airlie <airlied@redhat.com>
2015-05-07i965/sync: Implement DRI2_Fence extensionChad Versace1-2/+2
This enables EGL_KHR_fence_sync and EGL_KHR_wait_sync. Below is the difference in piglit results, before and after this patch. No regressions and several tests improve from 'skip' to 'pass'. Out of EGL_KHR_fence_sync tests, two of the multithreaded tests skip; all other tests pass. cmdline: piglit run -p gbm -t sync tests/quick.py mesa: master@1ac7db0 piglit: 4069bec hw: Ivybridge | before after ------+------------- pass | 32 46 fail | 0 0 crash | 0 0 skip | 35 21 total | 67 67 v2: - Set fence->signalled = true in brw_fence_has_completed() too. Reviewed-by: Daniel Stone <daniels@collabora.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
2015-05-06relnotes: Note support for viewport arrays on i965/Gen6.Chris Forbes1-0/+1
Signed-off-by: Chris Forbes <chrisf@ijw.co.nz>
2015-05-06docs: mark GL_AMD_performance_monitor on nvc0 for the 10.6.0 releaseSamuel Pitoiset1-0/+1
Other drivers which want to enable this extension must expose groups of GPU hardware performance counters. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Martin Peres <martin.peres@free.fr>
2015-05-05egl: image_dma_buf_export - use KHR 64-bit typeDave Airlie1-10/+15
After talking to Jon Leech he suggested this should be fine. update spec to the version in the registry. Signed-off-by: Dave Airlie <airlied@redhat.com>
2015-05-04docs/GL3: Update GLES 3.1 dependenciesIan Romanick1-0/+6
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
2015-04-30docs/relnotes: document the new EGL sync extensionsMarek Olšák1-0/+4
2015-04-28docs: more details about Viewperf 12 medical-01 test issuesBrian Paul1-0/+7
2015-04-27freedreno/a3xx: add support for S8 and Z32F_S8Ilia Mirkin1-0/+1
Enables ARB_depth_buffer_float. There is no sampling support for interleaved Z32F_S8, so we store the two textures separately, one as Z32F, the other as S8. As a result, we need a lot of additional logic for restores and transfers. Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
2015-04-27freedreno/a3xx: add support for disabling depth clippingIlia Mirkin1-4/+5
Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
2015-04-27i965: Enable ARB_gpu_shader5 on Gen8+.Matt Turner1-0/+1
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
2015-04-27Fix a few typosZoë Blade6-8/+8
Reviewed-by: Francisco Jerez <currojerez@riseup.net>
2015-04-27docs/GL3: started adding support for shader_image_sizeMartin Peres1-2/+2
Signed-off-by: Martin Peres <martin.peres@linux.intel.com>
2015-04-24docs: add news item and link release notes for mesa 10.5.4Emil Velikov2-0/+7
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
2015-04-24docs: Add sha256 sums for the 10.5.4 releaseEmil Velikov1-1/+2
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> (cherry picked from commit adb47b5b279b6fd920151aa7926af6ffd2069339)
2015-04-24Add release notes for the 10.5.4 releaseEmil Velikov1-0/+124
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> (cherry picked from commit ea0d1f575c214c09ba3df12644a960e86e031766)
2015-04-23docs: mark off texture_stencil8 (v2.1)Dave Airlie2-1/+2
copy drivers from the stencil_texturing list, softpipe is definitely broken for stencil texturing since it uses float, but I'll look at that later. v2.1: update relnotes Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu> Signed-off-by: Dave Airlie <airlied@redhat.com>
2015-04-20docs/GL3.txt: update ARB_shader_subroutine statusDave Airlie1-1/+1
Admit to having started working on this, I don't admit to ever finishing it Signed-off-by: Dave Airlie <airlied@redhat.com>
2015-04-20doc: Add GL_ARB_shader_image_size dependency for OpenGL ES 3.1Ian Romanick1-0/+1
imageSize() is in the GLSL ES 3.1 spec. Trivial. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
2015-04-16mesa: enable GL_ARB_program_interface_query extensionTapani Pälli2-2/+3
(and mark it as DONE in docs/GL3.txt + 10.6.0 relnotes) Signed-off-by: Tapani Pälli <tapani.palli@intel.com> Reviewed-by: Martin Peres <martin.peres@linux.intel.com>
2015-04-13docs: Improve LLVM_USE_CRT_xxx instructions.Jose Fonseca1-5/+27
2015-04-12docs: add news item and link release notes for mesa 10.5.3Emil Velikov2-0/+7
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
2015-04-12docs: Add 256 sums for the 10.5.3 releaseEmil Velikov1-1/+2
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> (cherry picked from commit 65776421fe59a0ffd5388c0968c9b0b1c1b230ed)
2015-04-12Add release notes for the 10.5.3 releaseEmil Velikov1-0/+124
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> (cherry picked from commit c4b8bff6e24c6661a8a05ec05f8ed5762e95021b)
2015-04-12docs: remove the --with-max-{width,height} noteEmil Velikov1-13/+0
Missed out with commit d99135b2e9b(configure: nuke --with-max-{width,height}) Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Reviewed-by: Brian Paul <brianp@vmware.com>
2015-04-05freedreno/a3xx: add UBO supportIlia Mirkin1-0/+1
Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
2015-04-05i965: Implement support for ARB_clip_control.Mathias Fröhlich2-1/+2
Switch between the two clip space definitions already available in hardware. Update winding order dependent state according to the clip control state. This change did not introduce new piglit quick.test regressions on an Ivybridge Mobile and a GM45 Express chipset. Also it enables and passes the clip-control and clip-control-depth-precision tests on these two chipsets. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Signed-off-by: Mathias Froehlich <Mathias.Froehlich@web.de>
2015-04-02freedreno/a3xx: add MRT supportIlia Mirkin1-1/+2
The hardware only supports 4 MRTs. It should be possible to emulate support for 8, but doesn't seem worth the trouble. Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
2015-04-01docs: note that classic osmesa/libEGL no longer builds with sconsEmil Velikov2-4/+2
Plus nuke the final reference to osmesa from README.WIN32. Reviewed-by: Jose Fonseca <jfonseca@vmware.com> Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
2015-04-01egl: add initial EGL_MESA_image_dma_buf_export v2.4Dave Airlie1-0/+142
At the moment to get an EGL image to a dma-buf file descriptor, you have to use EGL_MESA_drm_image, and then use libdrm to convert this to a file descriptor. This extension just provides an API modelled on EGL_MESA_drm_image, to return a dma-buf file descriptor. v2: update spec for new API proposal add internal queries to get the fourcc back from intel driver. v2.1: add gallium pieces. v2.2: add offsets to spec and API, rename fd->fds, stride->strides in API. rewrite spec a bit more, add some q/a v2.3: add modifiers to query interface and 64-bit type for that (Daniel Stone) specifiy what happens to num fds vs num planes differences. (Chad Versace) v2.4: fix grammar (Daniel Stone) Signed-off-by: Dave Airlie <airlied@redhat.com>
2015-03-31docs: document Viewperf 12 issuesBrian Paul1-9/+85
Signed-off-by: Brian Paul <brianp@vmware.com>
2015-03-31llvmpipe: enable ARB_texture_gatherRoland Scheidegger1-1/+1
Just announce support for 4 components. While here also increase the max/min texel offsets (the limit is completely artificial, was chosen because that's what other hardware did, however there's other drivers using larger limits). Over a thousand little piglits skip->pass. v2: update docs/GL3.txt Reviewed-by: Jose Fonseca <jfonseca@vmware.com>