summaryrefslogtreecommitdiffstats
path: root/docs/relnotes
Commit message (Collapse)AuthorAgeFilesLines
* docs: Add SHA256 sums for 19.0.7Dylan Baker2019-06-241-1/+2
|
* Docs add 19.0.7 release notesDylan Baker2019-06-241-0/+149
|
* docs: Add SHA256 sums for 19.1.0Juan A. Suarez Romero2019-06-111-1/+1
| | | | | Signed-off-by: Juan A. Suarez Romero <[email protected]> (cherry picked from commit 2a5b4e2b9ffc07f32a7ff5f89176cb892b179c5f)
* docs: Add release notes for 19.1.0Juan A. Suarez Romero2019-06-111-3/+4530
| | | | | Signed-off-by: Juan A. Suarez Romero <[email protected]> (cherry picked from commit 1517811f4f75cd628dd7122d63092f3954a81a7d)
* docs: fixup 19.0.5 <> 19.0.6 confusionEmil Velikov2019-06-101-1/+1
| | | | | | | | | The title of the release notes says 19.0.5 while the rest of the file (correctly) says 19.0.6 Fixes: fe79d75ccf9 ("docs: Add relnotes for 19.0.6") Signed-off-by: Emil Velikov <[email protected]> Reviewed-by: Dylan Baker <dylan at pnwbakers.com>
* docs: Add SHA256 sums for 19.0.6Dylan Baker2019-06-051-1/+2
|
* docs: Add relnotes for 19.0.6Dylan Baker2019-06-051-0/+152
|
* docs: add MD5 checksums for 9.2.2 filesErik Faye-Lund2019-06-051-0/+3
| | | | | | | | | | | | These checksums were obtained by downloading the releases from ftp://ftp.freedesktop.org/pub/mesa/older-versions/9.x/9.2.2/ and running md5sum on them. Hopefully the server wasn't compromised since release. Signed-off-by: Erik Faye-Lund <[email protected]> Reviewed-by: Emil Velikov <[email protected]> Acked-by: Eric Engestrom <[email protected]>
* docs: remove stray whitespaceErik Faye-Lund2019-06-052-2/+2
| | | | | | | | | There's some stray whitespace in these files that doesn't do anything useful. Let's get rid of if. Signed-off-by: Erik Faye-Lund <[email protected]> Reviewed-by: Emil Velikov <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
* docs: do not use br-tag for non-significant breaksErik Faye-Lund2019-06-054-14/+15
| | | | | | | | | | | | | | | According to the W3C, we shouldn't use the br-tag unless the line-break is part of the content: https://www.w3.org/TR/2011/WD-html5-author-20110809/the-br-element.html All of these instances are for non-content usage, and is as such technically out-of-spec. So let's either remove them, or split paragraphs, based on how related the content are. Signed-off-by: Erik Faye-Lund <[email protected]> Reviewed-by: Emil Velikov <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
* docs: use code instead of tt-tagErik Faye-Lund2019-06-053-6/+6
| | | | | | | | | | The tt-tag has been removed from HTML5, so let's normalize this to code-tags intead. This just makes things a bit more consistent, as we've mixed these left and right so far anyway. Signed-off-by: Erik Faye-Lund <[email protected]> Reviewed-by: Emil Velikov <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
* egl: add EGL_platform_device supportEmil Velikov2019-06-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This new 'platform' is added by default with no guards. It is effectively a copy of the surfaceless one, with updated function names and brand new probe function. Due to the reuse, some of the ifdef HAVE_SURFACELESS_PLATFORM guards have been dropped. A worthy mention are the changes in _egFindDisplay, since the original and dup'd fd are required, we make use of the plat_opt argument. Note that no hacks for eglGetDisplay are added - the API works only with the eglGetPlatformDisplay* API. v2: - s/_eglCompareDeviceDisplay/_eglSameDeviceDisplay/ (Eric) - let ^^ return bool (Eric) - fixup meson build, move files() further up (Eric) - copy from plat. surfaceless w/o the visual cleanups - close and free when destroying the dpy - sprinkle a few _eglDeviceSupports - split fd handling into separate function - use directly the render node if no FD is given (Mathias) v3: - s/dpy/disp/g - drop swap_buffers* callbacks - drop loader_set_logger() - drop local define - re-introduce _eglGetDRMDeviceRenderNode() - EGL_WARN on ForceSoftware with HW device - continue using the HW device - bail out for "EGL_MESA_device_software" until it's fixed - wire-up the Android build v4: - use new style _eglFindDisplay() - split hw vs sw code paths - don't close the internal fd (already handled in FiniDisplay()) - make swrast work (bit hacky bit will do for now) - Android for real, drop autotools - Correct HW + LIBGL_ALWAYS_SOFTWARE check - use the dri2_create_drawable() helper v5: - enhance comment around fd checks (Mathias) - rebase for dri2_init_surface() changes Cc: Mathias Fröhlich <[email protected]> Acked-by: Marek Olšák <[email protected]> (v4) Signed-off-by: Emil Velikov <[email protected]> Signed-off-by: Marek Olšák <[email protected]>
* docs: Add Sha256 sums for 19.0.5Dylan Baker2019-05-211-1/+2
|
* docs: Add release notes for 19.0.5Dylan Baker2019-05-211-0/+136
|
* docs: Add SHA256 sums for mesa 19.0.4Dylan Baker2019-05-091-1/+2
|
* Docs: add 19.0.4 release notesDylan Baker2019-05-091-0/+242
|
* docs: drop h1 in headerErik Faye-Lund2019-05-08231-231/+231
| | | | | | | | | | | It's generally frowned upon to have more than one H1 per document in HTML4. So let's put the text directly inside the header. This means we can drop the flex-based centering, which makes things a bit easier. We also need to change the padding to rem instead of em, because the em has now changed. Signed-off-by: Erik Faye-Lund <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
* docs: Add relnotes stub for 19.2Juan A. Suarez Romero2019-05-071-0/+59
| | | | Signed-off-by: Juan A. Suarez Romero <[email protected]>
* docs: replace empty list with a none-paragraphErik Faye-Lund2019-05-021-4/+1
| | | | | Signed-off-by: Erik Faye-Lund <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
* docs: fix closing of list-itemsErik Faye-Lund2019-05-021-1/+1
| | | | | Signed-off-by: Erik Faye-Lund <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
* docs: fixup list-item tagsErik Faye-Lund2019-05-021-4/+4
| | | | | | | | The list items needs to contain everything part of the item, not just the first paragraph. Signed-off-by: Erik Faye-Lund <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
* docs: fix closing of paragraphsErik Faye-Lund2019-05-022-2/+2
| | | | | Signed-off-by: Erik Faye-Lund <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
* docs: add missing listsErik Faye-Lund2019-05-022-0/+4
| | | | | Signed-off-by: Erik Faye-Lund <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
* docs: remove stray list-startErik Faye-Lund2019-05-021-4/+0
| | | | | Signed-off-by: Erik Faye-Lund <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
* docs: close listsErik Faye-Lund2019-05-022-0/+4
| | | | | | | | These lists never got closed. Let's fix that to avoid issues with bad parsers. Signed-off-by: Erik Faye-Lund <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
* docs: open list-item before closing itErik Faye-Lund2019-05-021-1/+1
| | | | | | | | A list-item must be openened before it can be closed. So let's replace this closing tag with an opening tag. Signed-off-by: Erik Faye-Lund <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
* docs: properly escape ampersandErik Faye-Lund2019-05-021-1/+1
| | | | | | | | Even in preformatted blocks, ampersands should be escaped. Let's correct this, in case of strict parsers. Signed-off-by: Erik Faye-Lund <[email protected]> Reviewed-by: Eric Engestrom <[email protected]>
* anv: add support for VK_EXT_memory_budgetEric Engestrom2019-04-301-0/+1
| | | | | Signed-off-by: Eric Engestrom <[email protected]> Reviewed-by: Jason Ekstrand <[email protected]>
* st/mesa: expose EXT_gpu_shader4 if GLSL 1.40 is supportedMarek Olšák2019-04-241-0/+2
| | | | | Tested-by: Dieter Nützel <[email protected]> Reviewed-by: Eric Anholt <[email protected]>
* docs: Add SHA256 sums for mesa 19.0.3Dylan Baker2019-04-241-1/+2
|
* docs: add relnotes for 19.0.3Dylan Baker2019-04-241-0/+147
|
* iris: add support for INTEL_conservative_rasterizationMike Blumenkrantz2019-04-231-0/+1
| | | | | | | | | this hooks up the iris gallium driver to existing mesa bits which handle the implementation resolves kwg/mesa#8 Reviewed-by: Kenneth Graunke <[email protected]>
* anv,radv: Update release notes for newly implemented extensiosnJason Ekstrand2019-04-221-0/+12
| | | | | | | | | | A lot has happened in those two drivers since the 19.0 release and we keep forgetting to update release notes. Time to bring everything up to date again before 19.1 gets released. Acked-by: Lionel Landwerlin <[email protected]> Reviewed-by: Bas Nieuwenhuizen <[email protected]> Reviewed-by: Samuel Pitoiset <[email protected]>
* docs/relnotes: add support for VK_KHR_shader_float16_int8Andres Gomez2019-04-201-0/+1
| | | | | | | | v2: radv also supports it now (Samuel Pitoiset). Signed-off-by: Andres Gomez <[email protected]> Reviewed-by: Jason Ekstrand <[email protected]> Reviewed-by: Samuel Pitoiset <[email protected]>
* anv: Implement VK_EXT_descriptor_indexingJason Ekstrand2019-04-191-0/+1
| | | | | | | | | Now that everything is in place to do bindless for all resource types except input attachments and UBOs, VK_EXT_descriptor_indexing is "trivial". Reviewed-by: Lionel Landwerlin <[email protected]> Reviewed-by: Caio Marcelo de Oliveira Filho <[email protected]>
* radeonsi: enable GL_EXT_shader_image_load_formattedMarek Olšák2019-04-151-0/+1
| | | | | | no changes - the driver doesn't use the format Reviewed-by: Bas Nieuwenhuizen <[email protected]>
* docs: Add sha256 sums for 19.0.2Dylan Baker2019-04-101-1/+2
|
* docs: Add release notes for 19.0.2Dylan Baker2019-04-101-0/+121
|
* docs: Add NV_compute_shader_derivatives to 19.1.0 relnotesCaio Marcelo de Oliveira Filho2019-04-081-0/+2
|
* docs: add sha256 checksums for 18.3.6Emil Velikov2019-04-051-1/+2
| | | | | Signed-off-by: Emil Velikov <[email protected]> (cherry picked from commit eb9da68cbf23aafb1192beed084b2f05df65dd04)
* docs: add release notes for 18.3.6Emil Velikov2019-04-051-0/+168
| | | | | Signed-off-by: Emil Velikov <[email protected]> (cherry picked from commit b03f51c4b4dfa54775e866b75f68a41862c062c2)
* docs/relnotes: document parallel_shader_compile changes in 19.1.0, not 19.0.0Marek Olšák2019-04-022-2/+2
|
* mesa: implement ARB/KHR_parallel_shader_compileMarek Olšák2019-04-011-0/+2
| | | | Tested by piglit.
* docs: Add SHA256 sums for mesa 19.0.1Dylan Baker2019-03-271-1/+2
|
* docs: Add release notes for 19.0.1Dylan Baker2019-03-271-0/+158
|
* docs: add sha256 checksums for 18.3.5Emil Velikov2019-03-181-1/+2
| | | | | Signed-off-by: Emil Velikov <[email protected]> (cherry picked from commit ec770b43b974cc86ce4bf996aa0616ceafa4e69c)
* docs: add release notes for 18.3.5Emil Velikov2019-03-181-0/+270
| | | | | Signed-off-by: Emil Velikov <[email protected]> (cherry picked from commit 022708cb40a997e796f95d011a0e6c64a7333fe0)
* docs: Add SHA256 sums for 19.0.0Dylan Baker2019-03-131-1/+2
|
* docs: Add release notes for 19.0.0Dylan Baker2019-03-131-2/+2402
|
* docs: add sha256 checksums for 18.3.4Emil Velikov2019-02-181-1/+2
| | | | | Signed-off-by: Emil Velikov <[email protected]> (cherry picked from commit bfb5bdaa97272537567cdf1e6caf1c7db9f28aba)