diff options
author | Ilia Mirkin <[email protected]> | 2016-10-14 00:03:12 -0400 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2016-10-22 12:02:35 -0400 |
commit | 3fdeb7c983d5a6e8704024dc841ff217377ba284 (patch) | |
tree | 00f1abc2d175fdf70b071fa7767a04c8da97f83b /docs/features.txt | |
parent | 6e08f3e96c6c3f269ea3ee79bb7e10940e6a13be (diff) |
gallium: add PIPE_CAP_STREAM_OUTPUT_INTERLEAVE_BUFFERS
This allows the driver to signal that it can't handle random
interleaving of attributes across buffers. This is required for
ARB_transform_feedback3, and it's initialized to whatever the previous
value of PIPE_CAP_STREAM_OUTPUT_PAUSE_RESUME was except for nv50 where
it is disabled. Note that the proprietary drivers never expose
ARB_transform_feedback3 on any GT21x's (where nouveau previously did),
and after some effort I was unable to get it to work.
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'docs/features.txt')
-rw-r--r-- | docs/features.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/features.txt b/docs/features.txt index a677bfbf3f9..2c6691f5b4c 100644 --- a/docs/features.txt +++ b/docs/features.txt @@ -133,7 +133,7 @@ GL 4.0, GLSL 4.00 --- all DONE: i965/gen8+, nvc0, r600, radeonsi GL_ARB_texture_gather DONE (i965/gen6+, nv50, llvmpipe, softpipe, swr) GL_ARB_texture_query_lod DONE (i965, nv50, softpipe) GL_ARB_transform_feedback2 DONE (i965/gen7+, nv50, llvmpipe, softpipe, swr) - GL_ARB_transform_feedback3 DONE (i965/gen7+, nv50, llvmpipe, softpipe, swr) + GL_ARB_transform_feedback3 DONE (i965/gen7+, llvmpipe, softpipe, swr) GL 4.1, GLSL 4.10 --- all DONE: i965/gen8+, nvc0, r600, radeonsi |