mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-23 04:40:09 +01:00
zink: mark ARB_sample_shading as supported
Reviewed-by: Erik Faye-Lund <erik.faye-lund@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7192>
This commit is contained in:
parent
bf9a1e0a4b
commit
0c70268ff7
2 changed files with 3 additions and 2 deletions
|
|
@ -129,7 +129,7 @@ GL 4.0, GLSL 4.00 --- all DONE: i965/gen7+, nvc0, r600, radeonsi, llvmpipe, virg
|
||||||
- Interpolation functions DONE (softpipe)
|
- Interpolation functions DONE (softpipe)
|
||||||
- New overload resolution rules DONE (softpipe)
|
- New overload resolution rules DONE (softpipe)
|
||||||
GL_ARB_gpu_shader_fp64 DONE (i965/gen7+, softpipe, swr)
|
GL_ARB_gpu_shader_fp64 DONE (i965/gen7+, softpipe, swr)
|
||||||
GL_ARB_sample_shading DONE (freedreno/a6xx, i965/gen6+, nv50)
|
GL_ARB_sample_shading DONE (freedreno/a6xx, i965/gen6+, nv50, zink)
|
||||||
GL_ARB_shader_subroutine DONE (freedreno, i965/gen6+, nv50, softpipe, swr)
|
GL_ARB_shader_subroutine DONE (freedreno, i965/gen6+, nv50, softpipe, swr)
|
||||||
GL_ARB_tessellation_shader DONE (i965/gen7+, swr)
|
GL_ARB_tessellation_shader DONE (i965/gen7+, swr)
|
||||||
GL_ARB_texture_buffer_object_rgb32 DONE (freedreno, i965/gen6+, softpipe, swr)
|
GL_ARB_texture_buffer_object_rgb32 DONE (freedreno, i965/gen6+, softpipe, swr)
|
||||||
|
|
@ -283,7 +283,7 @@ GLES3.2, GLSL ES 3.2 -- all DONE: i965/gen9+, radeonsi, virgl, llvmpipe
|
||||||
GL_OES_geometry_shader DONE (freedreno/a6xx, i965/hsw+, nvc0, r600, softpipe, v3d)
|
GL_OES_geometry_shader DONE (freedreno/a6xx, i965/hsw+, nvc0, r600, softpipe, v3d)
|
||||||
GL_OES_gpu_shader5 DONE (freedreno/a6xx, all drivers that support GL_ARB_gpu_shader5)
|
GL_OES_gpu_shader5 DONE (freedreno/a6xx, all drivers that support GL_ARB_gpu_shader5)
|
||||||
GL_OES_primitive_bounding_box DONE (freedreno/a5xx+, i965/gen7+, nvc0, r600, softpipe, v3d)
|
GL_OES_primitive_bounding_box DONE (freedreno/a5xx+, i965/gen7+, nvc0, r600, softpipe, v3d)
|
||||||
GL_OES_sample_shading DONE (freedreno/a6xx, i965, nvc0, r600)
|
GL_OES_sample_shading DONE (freedreno/a6xx, i965, nvc0, r600, zink)
|
||||||
GL_OES_sample_variables DONE (freedreno/a6xx, i965, nvc0, r600)
|
GL_OES_sample_variables DONE (freedreno/a6xx, i965, nvc0, r600)
|
||||||
GL_OES_shader_image_atomic DONE (all drivers that support GL_ARB_shader_image_load_store)
|
GL_OES_shader_image_atomic DONE (all drivers that support GL_ARB_shader_image_load_store)
|
||||||
GL_OES_shader_io_blocks DONE (All drivers that support GLES 3.1)
|
GL_OES_shader_io_blocks DONE (All drivers that support GLES 3.1)
|
||||||
|
|
|
||||||
|
|
@ -121,6 +121,7 @@ zink_get_param(struct pipe_screen *pscreen, enum pipe_cap param)
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
case PIPE_CAP_TEXTURE_MULTISAMPLE:
|
case PIPE_CAP_TEXTURE_MULTISAMPLE:
|
||||||
|
case PIPE_CAP_SAMPLE_SHADING:
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
case PIPE_CAP_TEXTURE_SWIZZLE:
|
case PIPE_CAP_TEXTURE_SWIZZLE:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue