Andres Gomez
862f35905c
docs: add release notes for 17.1.7
...
Signed-off-by: Andres Gomez <agomez@igalia.com >
2017-08-21 18:24:38 +03:00
Roland Scheidegger
3e96231457
llvmpipe: enable PIPE_CAP_QUERY_SO_OVERFLOW
...
The driver supported this since way before the GL spec for it existed.
Just need to support both the per-stream and for all streams variants
(which are identical due to only supporting 1 stream).
Passes piglit arb_transform_feedback_overflow_query-basic.
Reviewed-by: Jose Fonseca <jfonseca@vmware.com >
2017-08-17 18:46:44 +02:00
Roland Scheidegger
26d46b94b4
softpipe: enable PIPE_CAP_QUERY_SO_OVERFLOW
...
The driver was supposed to support this since way before the GL spec for it
existed, albeit it was apparently broken, so fix and enable it.
Reviewed-by: Jose Fonseca <jfonseca@vmware.com >
2017-08-17 18:46:44 +02:00
Emil Velikov
4468764ef0
docs: drop released RCs from the calendar
...
Signed-off-by: Emil Velikov <emil.velikov@collabora.com >
2017-08-07 15:41:09 +01:00
Emil Velikov
165be830fd
docs: update calendar, add news item and link release notes for 17.1.5
...
Signed-off-by: Emil Velikov <emil.velikov@collabora.com >
2017-08-07 13:14:38 +01:00
Emil Velikov
6dd9b9cd4a
docs: add sha256 checksums for 17.1.6
...
Signed-off-by: Emil Velikov <emil.velikov@collabora.com >
(cherry picked from commit 2766ed0d45b2c3397de5cbdfa9cf7e03a0fdfb5d)
2017-08-07 13:10:59 +01:00
Emil Velikov
ad81c7e4bf
docs: add release notes for 17.1.6
...
Signed-off-by: Emil Velikov <emil.velikov@collabora.com >
(cherry picked from commit 3d48433078cb9501c506d2a15834e8dda1a3caef)
2017-08-07 13:10:58 +01:00
Eleni Maria Stea
9f59cb2cda
docs: removed the '--with-sha1' requirement from shading.html
...
The configuration option --with-sha1 is no longer required for the
MESA_SHADER_READ_PATH, MESA_SHADER_DUMP_PATH environment variables
to take effect.
1- removed the "--with-sha1" sentence from docs/shading.html
2- added an extra note: that the corresponding dumped and replacement
shaders must have the same filenames for the feature to take effect.
Acked-by: Tapani Pälli <tapani.palli@intel.com >
2017-08-07 10:20:04 +03:00
Ilia Mirkin
35d7145fa6
fix GL_ARB_spirv_extensions name
...
Trivial. There is no _gl_ in there.
2017-08-06 13:25:13 -04:00
Timothy Arceri
75fd4d8fd3
docs: add EXT_memory_object and EXT_memory_object_fd to relnotes
2017-08-06 12:51:12 +10:00
Jordan Justen
fe3d2559d9
docs: Add Vulkan to features.txt
...
To get the extension list:
$ git grep -hE "extension name=\"VK_KHR" src/vulkan/registry/vk.xml | \
grep -v disabled | awk '{print $2}' | sed -E 's/(name=)?"//g' | sort
To find anv(il) and radv supported extensions:
$ git grep -hE "'VK_([A-Z]+)_[a-z]" src/intel/
$ git grep -hE "'VK_([A-Z]+)_[a-z]" src/amd/
v2:
* Add radv to Vulkan 1.0 list (Bas)
* 'started' => 'in progress'
* Drop KHX and EXT extensions (Jason)
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com >
Acked-by: Jason Ekstrand <jason@jlekstrand.net >
Acked-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl >
2017-08-02 14:49:47 -07:00
Nicolai Hähnle
78476cfe07
radeonsi: enable ARB_transform_feedback_overflow_query
...
v2: update for new cap name
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
2017-08-02 09:49:09 +02:00
Adam Jackson
d4ca66a159
docs: Update feature list for GL 4.6
...
ARB_polygon_offset_clamp and ARB_texture_filter_anisotropic look like
they'd be pretty trivial to wire up.
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com >
Signed-off-by: Adam Jackson <ajax@redhat.com >
2017-07-31 16:35:17 -04:00
Emil Velikov
06e2a507eb
docs: add 17.3.0-devel release notes template
...
Signed-off-by: Emil Velikov <emil.velikov@collabora.com >
2017-07-24 14:27:15 +01:00
Matt Turner
51c1659af8
i965: Enable ARB_shader_ballot on Gen8+
...
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org >
2017-07-20 16:56:49 -07:00
Matt Turner
41437f1b77
i965: Enable ARB_shader_group_vote
2017-07-20 16:56:49 -07:00
Andres Gomez
80a0c9745c
docs: update master's release notes, news and calendar commit
...
This reflects closer what we are actually doing.
Signed-off-by: Andres Gomez <agomez@igalia.com >
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com >
Reviewed-by: Emil Velikov <emil.velikov@collabora.com >
2017-07-19 19:10:10 +03:00
Andres Gomez
e6f455646a
docs: avoid overwrite of LD_LIBRARY_PATH during basic testing
...
The LD_LIBRARY_PATH environment variable could be already defined so
we extend it and restore it rather than just overwriting it.
v2:
- Unset the __old_ld helper variable when we are done with it.
- Corrected test for and escaping of variables (Eric).
v3: Remove unneeded variable (Emil).
Signed-off-by: Andres Gomez <agomez@igalia.com >
Reviewed-by: Emil Velikov <emil.velikov@collabora.com >
2017-07-19 19:10:10 +03:00
Andres Gomez
8c1d87b251
docs: add instructions to specify LLVM version for basic testing
...
The "Perform basic testing" and "Use the release.sh script from xorg
util-modular" sections provide some instructions to do so. We add now
some comments in order to use a recent enough LLVM version to run
dist/distcheck and the automake generated binaries.
v2: Suggested the need to define LLVM_CONFIG also before running the
release.sh script.
Signed-off-by: Andres Gomez <agomez@igalia.com >
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com >
Reviewed-by: Emil Velikov <emil.velikov@collabora.com >
2017-07-19 19:10:10 +03:00
Andres Gomez
25d43cd656
docs: update calendar, add news item and link release notes for 17.1.5
...
Signed-off-by: Andres Gomez <agomez@igalia.com >
2017-07-14 22:30:08 +03:00
Andres Gomez
7ad2f7078d
docs: add sha256 checksums for 17.1.5
...
Signed-off-by: Andres Gomez <agomez@igalia.com >
2017-07-14 22:30:08 +03:00
Andres Gomez
ea417c4c64
docs: add release notes for 17.1.5
...
Signed-off-by: Andres Gomez <agomez@igalia.com >
2017-07-14 22:30:08 +03:00
Emil Velikov
432f8bff5a
docs: update HTTP -> HTTPS reference to reflect reality
...
The link recently got updated to https.
Signed-off-by: Emil Velikov <emil.velikov@collabora.com >
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com >
2017-07-12 15:45:30 +01:00
Brian Paul
8e4559b3fc
docs: update bug reporting guidelines
...
Suggest attaching output of glxinfo/wglinfo. Suggest providing
an apitrace.
2017-07-03 08:14:08 -06:00
Andres Gomez
7d0f80b1d3
docs: update calendar, add news item and link release notes for 17.1.4
...
Signed-off-by: Andres Gomez <agomez@igalia.com >
2017-06-30 20:38:01 +03:00
Andres Gomez
ed587f7868
docs: add sha256 checksums for 17.1.4
...
Signed-off-by: Andres Gomez <agomez@igalia.com >
(cherry picked from commit 5a24aa8c55c2b7893d50a4a203f14300d4ecab87)
2017-06-30 20:34:32 +03:00
Andres Gomez
158fb2ef20
docs: add release notes for 17.1.4
...
Signed-off-by: Andres Gomez <agomez@igalia.com >
(cherry picked from commit e60d010ef41f049df84d683a6465d1e5bf0cbb3d)
2017-06-30 20:34:32 +03:00
Emil Velikov
4a7222518d
docs: update calendar, add news item and link release notes for 17.1.3
...
Signed-off-by: Emil Velikov <emil.velikov@collabora.com >
2017-06-19 12:23:07 +01:00
Emil Velikov
42098bf9b2
docs: add sha256 checksums for 17.1.3
...
Signed-off-by: Emil Velikov <emil.velikov@collabora.com >
2017-06-19 12:20:52 +01:00
Emil Velikov
b55dfb7be3
docs: add release notes for 17.1.3
...
Signed-off-by: Emil Velikov <emil.velikov@collabora.com >
2017-06-19 12:20:51 +01:00
Samuel Pitoiset
65d1e4d1eb
radeonsi: enable ARB_bindless_texture
...
This has only been tested on RX480.
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com >
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
2017-06-14 10:04:36 +02:00
Kenneth Graunke
9cd69022d5
i965: Change INTEL_DEBUG=vec4 to INTEL_SCALAR_VS for consistency.
...
We moved to INTEL_SCALAR_* when we added more than a single stage, but
never went back and converted the VS to work that way. Be consistent.
Also update the documentation to actually mention these debug variables.
Acked-by: Jason Ekstrand <jason@jlekstrand.net >
2017-06-05 23:32:40 -07:00
Juan A. Suarez Romero
d1df9a595e
docs: update calendar, add news item and link release notes for 17.1.2
...
Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com >
2017-06-05 21:22:15 +00:00
Juan A. Suarez Romero
3255b9d348
docs: add sha256 checksums for 17.1.2
...
Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com >
(cherry picked from commit 4908b1e909ba4cfd5391f61ea551d21cccb52e2f)
2017-06-05 21:22:15 +00:00
Juan A. Suarez Romero
373c309c24
docs: add release notes for 17.1.2
...
Signed-off-by: Juan A. Suarez Romero <jasuarez@igalia.com >
(cherry picked from commit 97f6404e50212fb65fe047e467f5497bcba5b8ac)
2017-06-05 21:22:15 +00:00
Lyude
98fc0243ef
nvc0: Add support for ARB_post_depth_coverage
...
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com >
Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu >
2017-06-02 23:19:42 -04:00
Emil Velikov
72011f7a7b
docs: update calendar, add news item and link release notes for 17.0.7
...
Signed-off-by: Emil Velikov <emil.velikov@collabora.com >
2017-06-01 11:46:39 +01:00
Emil Velikov
0fd1715be1
docs: add sha256 checksums for 17.0.7
...
Signed-off-by: Emil Velikov <emil.velikov@collabora.com >
(cherry picked from commit bdfd5658e7cd4c6925afa06bb858c0601865a1ea)
2017-06-01 11:42:46 +01:00
Emil Velikov
29c6a1200b
docs: add release notes for 17.0.7
...
Signed-off-by: Emil Velikov <emil.velikov@collabora.com >
(cherry picked from commit 46cc7a1746e03b1672c8508af49eb60546d5b61d)
2017-06-01 11:42:45 +01:00
Andres Gomez
cd8a9d7dfa
docs: small release calendar fixes
...
Signed-off-by: Andres Gomez <agomez@igalia.com >
Reviewed-by: Eric Engestrom <eric@engestrom.ch >
2017-05-26 15:08:14 +02:00
Emil Velikov
6a3ffda83a
docs: update calendar, add news item and link release notes for 17.1.1
...
Signed-off-by: Emil Velikov <emil.velikov@collabora.com >
2017-05-25 08:52:14 +01:00
Emil Velikov
1e735800a9
docs: add sha256 checksums for 17.1.1
...
Signed-off-by: Emil Velikov <emil.velikov@collabora.com >
(cherry picked from commit 092c485b8ed127a15f52434857c37e8021775775)
2017-05-25 08:48:20 +01:00
Emil Velikov
e3ba46f6aa
docs: add release notes for 17.1.1
...
Signed-off-by: Emil Velikov <emil.velikov@collabora.com >
(cherry picked from commit ca0a148a4d09d850f63c82011ac49a311e43e502)
2017-05-25 08:48:19 +01:00
Brian Paul
cf1adb7b1c
svga: log the process command line to the vmware.log file
...
This is useful for Piglit when thousands of tests are run and we want
to determine which test triggered a device error.
v2: only log command line info if the new SVGA_EXTRA_LOGGING env var is set
Reviewed-by: Charmaine Lee <charmainel@vmware.com >
2017-05-24 11:33:47 -06:00
Nanley Chery
d132bb36ce
docs: Document ASTC extension support for SKL and BXT
...
v2: Remove the '+' after bxt
Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com >
Signed-off-by: Nanley Chery <nanley.g.chery@intel.com >
2017-05-22 11:13:53 -07:00
Timothy Arceri
a74300c7ff
mesa: add an env var to force cache fallback
...
For the gallium state tracker a tgsi binary may have been evicted
from the cache to make space. In this case we would take the
fallback path and recompile/link the shader.
On i965 there are a number of reasons we can get to the program
upload stage and have neither IR nor a valid cached binary.
For example the binary may have been evicted from the cache or
we need a variant that wasn't previously cached.
This environment variable enables us to force the fallback path that
would be taken in these cases and makes it easier to debug these
otherwise hard to reproduce scenarios.
Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com >
2017-05-20 08:35:51 +10:00
Emil Velikov
2d35773221
configure: enable the surfaceless platform by default
...
A simple platform that you want to use in a many usecases. See the
spec file details.
It has no special requirements plus it takes less than a second to
build.
Cc: mesa-stable@lists.freedesktop.org
Signed-off-by: Emil Velikov <emil.velikov@collabora.com >
Acked-by: Tapani Pälli <tapani.palli@intel.com >
Reviewed-by: Eric Engestrom <eric@engestrom.ch >
2017-05-19 19:44:06 +01:00
Emil Velikov
73682f82bc
configure: update remaining --with-egl-platforms references
...
Rename the remaining references to omit the egl part.
Cc: mesa-stable@lists.freedesktop.org
Signed-off-by: Emil Velikov <emil.velikov@collabora.com >
Reviewed-by: Eric Engestrom <eric@engestrom.ch >
2017-05-19 19:44:02 +01:00
Andres Gomez
752a6384af
docs: update calendar, add news item and link release notes for 17.0.6
...
Signed-off-by: Andres Gomez <agomez@igalia.com >
2017-05-13 02:20:32 +03:00
Andres Gomez
05e833dfda
docs: add sha256 checksums for 17.0.6
...
Signed-off-by: Andres Gomez <agomez@igalia.com >
(cherry picked from commit 6a680243fcef4509372941d5c4c50b82c3aaa8ed)
2017-05-13 02:16:11 +03:00