aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenneth Graunke <[email protected]>2019-02-21 21:36:05 -0800
committerKenneth Graunke <[email protected]>2019-02-25 00:57:50 -0800
commitfce089c8a2d19480d65d217826a7399fc57019f8 (patch)
tree810b5c38ee054bfc60e74a4794ea8fb155737e68 /src
parent6921588d549af2408bb621a7569d832bb4639a56 (diff)
iris: Drop RGBX -> RGBA for storage image usages
GLSL doesn't expose RGB/RGBX image formats, so this isn't needed.
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/iris/iris_formats.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/gallium/drivers/iris/iris_formats.c b/src/gallium/drivers/iris/iris_formats.c
index 969405154b3..8a53bc19f3f 100644
--- a/src/gallium/drivers/iris/iris_formats.c
+++ b/src/gallium/drivers/iris/iris_formats.c
@@ -371,13 +371,10 @@ iris_format_for_usage(const struct gen_device_info *devinfo,
enum isl_format format = iris_isl_format_for_pipe_format(pformat);
- /* Convert RGBX into RGBA for rendering or typed image access. */
+ /* Convert RGBX into RGBA for rendering */
if (isl_format_is_rgbx(format) &&
- (((usage & ISL_SURF_USAGE_RENDER_TARGET_BIT) &&
- !isl_format_supports_rendering(devinfo, format)) ||
- ((usage & ISL_SURF_USAGE_STORAGE_BIT) &&
- !(isl_format_supports_typed_writes(devinfo, format) &&
- isl_format_supports_typed_reads(devinfo, format))))) {
+ (usage & ISL_SURF_USAGE_RENDER_TARGET_BIT) &&
+ !isl_format_supports_rendering(devinfo, format)) {
format = isl_format_rgbx_to_rgba(format);
}