radv: set PERF_MOD in sample state like radeonsi.
authorDave Airlie <airlied@redhat.com>
Fri, 28 Apr 2017 06:17:10 +0000 (07:17 +0100)
committerDave Airlie <airlied@redhat.com>
Sun, 7 May 2017 10:19:01 +0000 (11:19 +0100)
This just aligns the code with radeonsi.

Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
Signed-off-by: Dave Airlie <airlied@redhat.com>
src/amd/vulkan/radv_image.c

index c6261d320bd36753a9673108599de72eb8b513fb..888561d59bc704e3dc58cd023e2edc1461718263 100644 (file)
@@ -300,7 +300,8 @@ si_make_texture_descriptor(struct radv_device *device,
        state[1] = (S_008F14_DATA_FORMAT_GFX6(data_format) |
                    S_008F14_NUM_FORMAT_GFX6(num_format));
        state[2] = (S_008F18_WIDTH(width - 1) |
-                   S_008F18_HEIGHT(height - 1));
+                   S_008F18_HEIGHT(height - 1) |
+                   S_008F18_PERF_MOD(4));
        state[3] = (S_008F1C_DST_SEL_X(radv_map_swizzle(swizzle[0])) |
                    S_008F1C_DST_SEL_Y(radv_map_swizzle(swizzle[1])) |
                    S_008F1C_DST_SEL_Z(radv_map_swizzle(swizzle[2])) |