summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolai Hähnle <nicolai.haehnle@amd.com>2017-07-26 19:37:21 +0200
committerNicolai Hähnle <nicolai.haehnle@amd.com>2017-07-31 18:32:13 +0200
commit593160a728f96f2ac4eceabdd4a1f7514664ee31 (patch)
treeeb29bc1c743874eceffe6e4c25225391c7ce7792
parent45037532fa9c4ecdd74bd48dc01883ca97547d8c (diff)
radeonsi: enable ARB_transform_feedback_overflow_queryarb_transform_feedback_overflow_query
v2: update for new cap name
-rw-r--r--docs/features.txt2
-rw-r--r--docs/relnotes/17.3.0.html2
-rw-r--r--src/gallium/drivers/radeonsi/si_pipe.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/docs/features.txt b/docs/features.txt
index 1f628e1c03..6c0c697566 100644
--- a/docs/features.txt
+++ b/docs/features.txt
@@ -303,7 +303,7 @@ Khronos, ARB, and OES extensions that are not part of any OpenGL or OpenGL ES ve
GL_ARB_sparse_texture2 not started
GL_ARB_sparse_texture_clamp not started
GL_ARB_texture_filter_minmax not started
- GL_ARB_transform_feedback_overflow_query DONE (i965/gen6+)
+ GL_ARB_transform_feedback_overflow_query DONE (i965/gen6+,radeonsi)
GL_KHR_blend_equation_advanced_coherent DONE (i965/gen9+)
GL_KHR_no_error started (Timothy Arceri)
GL_KHR_texture_compression_astc_hdr DONE (i965/bxt)
diff --git a/docs/relnotes/17.3.0.html b/docs/relnotes/17.3.0.html
index 335e40537c..f86d1a30e2 100644
--- a/docs/relnotes/17.3.0.html
+++ b/docs/relnotes/17.3.0.html
@@ -44,7 +44,7 @@ Note: some of the new features are only available with certain drivers.
</p>
<ul>
-TBD
+<li>GL_ARB_transform_feedback_overflow_query on radeonsi</li>
</ul>
<h2>Bug fixes</h2>
diff --git a/src/gallium/drivers/radeonsi/si_pipe.c b/src/gallium/drivers/radeonsi/si_pipe.c
index 2904127eef..67bc7bf4ae 100644
--- a/src/gallium/drivers/radeonsi/si_pipe.c
+++ b/src/gallium/drivers/radeonsi/si_pipe.c
@@ -514,6 +514,7 @@ static int si_get_param(struct pipe_screen* pscreen, enum pipe_cap param)
case PIPE_CAP_QUERY_TIMESTAMP:
case PIPE_CAP_QUERY_TIME_ELAPSED:
case PIPE_CAP_NIR_SAMPLERS_AS_DEREF:
+ case PIPE_CAP_QUERY_SO_OVERFLOW:
return 1;
case PIPE_CAP_INT64:
@@ -603,7 +604,6 @@ static int si_get_param(struct pipe_screen* pscreen, enum pipe_cap param)
case PIPE_CAP_UMA:
case PIPE_CAP_POLYGON_MODE_FILL_RECTANGLE:
case PIPE_CAP_POST_DEPTH_COVERAGE:
- case PIPE_CAP_QUERY_SO_OVERFLOW:
return 0;
case PIPE_CAP_QUERY_BUFFER_OBJECT: