mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 13:10:10 +01:00
radeonsi: enable ARB_sparse_texture_clamp
Reviewed-by: Marek Olšák <marek.olsak@amd.com> Signed-off-by: Qiang Yu <yuq825@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14488>
This commit is contained in:
parent
95d3617909
commit
d1e46d34f7
3 changed files with 3 additions and 1 deletions
|
|
@ -314,7 +314,7 @@ Khronos, ARB, and OES extensions that are not part of any OpenGL or OpenGL ES ve
|
|||
GL_ARB_sparse_buffer DONE (radeonsi/gfx9+, zink)
|
||||
GL_ARB_sparse_texture DONE (radeonsi/gfx9+, zink)
|
||||
GL_ARB_sparse_texture2 DONE (radeonsi/gfx9+, zink)
|
||||
GL_ARB_sparse_texture_clamp not started
|
||||
GL_ARB_sparse_texture_clamp DONE (radeonsi/gfx9+)
|
||||
GL_ARB_texture_filter_minmax DONE (nvc0/gm200+, zink)
|
||||
GL_EXT_color_buffer_half_float DONE (freedreno, i965, iris, llvmpipe, nv50, nvc0, radeonsi, zink)
|
||||
GL_EXT_depth_bounds_test DONE (i965/gen12+, nv50, nvc0, radeonsi, softpipe, zink)
|
||||
|
|
|
|||
|
|
@ -8,3 +8,4 @@ radeonsi, zink ARB_sparse_texture2
|
|||
zink EXT_memory_object, EXT_memory_object_fd, EXT_semaphore, EXT_semaphore_fd
|
||||
anv VK_VALVE_mutable_descriptor_type
|
||||
Vulkan 1.3 on RADV,Anv.
|
||||
radeonsi ARB_sparse_texture_clamp
|
||||
|
|
|
|||
|
|
@ -327,6 +327,7 @@ static int si_get_param(struct pipe_screen *pscreen, enum pipe_cap param)
|
|||
si_get_param(pscreen, PIPE_CAP_MAX_TEXTURE_ARRAY_LAYERS) : 0;
|
||||
case PIPE_CAP_SPARSE_TEXTURE_FULL_ARRAY_CUBE_MIPMAPS:
|
||||
case PIPE_CAP_QUERY_SPARSE_TEXTURE_RESIDENCY:
|
||||
case PIPE_CAP_CLAMP_SPARSE_TEXTURE_LOD:
|
||||
return enable_sparse;
|
||||
|
||||
/* Viewports and render targets. */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue