Module: Mesa Branch: master Commit: de0c97c8171f8a8183b94d8ac6997117c4671da8 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=de0c97c8171f8a8183b94d8ac6997117c4671da8
Author: Marek Olšák <[email protected]> Date: Mon Apr 15 13:03:13 2019 -0400 radeonsi: enable GL_EXT_shader_image_load_formatted no changes - the driver doesn't use the format Reviewed-by: Bas Nieuwenhuizen <[email protected]> --- docs/relnotes/19.1.0.html | 1 + src/gallium/drivers/radeonsi/si_get.c | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/relnotes/19.1.0.html b/docs/relnotes/19.1.0.html index 1c5f8d034b7..36d6dbe27c3 100644 --- a/docs/relnotes/19.1.0.html +++ b/docs/relnotes/19.1.0.html @@ -40,6 +40,7 @@ TBD. <ul> <li>GL_ARB_parallel_shader_compile on all drivers.</li> +<li>GL_EXT_shader_image_load_formatted on radeonsi.</li> <li>GL_EXT_texture_compression_s3tc_srgb on Gallium drivers and i965 (ES extension).</li> <li>GL_NV_compute_shader_derivatives on iris and i965.</li> <li>GL_KHR_parallel_shader_compile on all drivers.</li> diff --git a/src/gallium/drivers/radeonsi/si_get.c b/src/gallium/drivers/radeonsi/si_get.c index 58b56b34d13..9e92dd40e7b 100644 --- a/src/gallium/drivers/radeonsi/si_get.c +++ b/src/gallium/drivers/radeonsi/si_get.c @@ -161,6 +161,7 @@ static int si_get_param(struct pipe_screen *pscreen, enum pipe_cap param) case PIPE_CAP_TGSI_VOTE: case PIPE_CAP_TGSI_FS_FBFETCH: case PIPE_CAP_COMPUTE_GRID_INFO_LAST_BLOCK: + case PIPE_CAP_IMAGE_LOAD_FORMATTED: return 1; case PIPE_CAP_RESOURCE_FROM_USER_MEMORY: _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
