radv: use vk_tecompress_etc2 from the runtime
There are some minor differences - fix incorrectly use of device->meta_state.resolve_compute.p_layout - when on_demand is true, the creation of ds and pipeline layouts are also deferred - unlike radv_meta_get_view_type, vk_texcompress_etc2_image_view_type returns 1d/2d array image views Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25071>
This commit is contained in:
@@ -30,546 +30,46 @@
|
||||
#include "sid.h"
|
||||
#include "vk_format.h"
|
||||
|
||||
/* Based on
|
||||
* https://github.com/Themaister/Granite/blob/master/assets/shaders/decode/etc2.comp
|
||||
* https://github.com/Themaister/Granite/blob/master/assets/shaders/decode/eac.comp
|
||||
*
|
||||
* With some differences:
|
||||
* - Use the vk format to do all the settings.
|
||||
* - Combine the ETC2 and EAC shaders.
|
||||
* - Since we combined the above, reuse the function for the ETC2 A8 component.
|
||||
* - the EAC shader doesn't do SNORM correctly, so this has that fixed.
|
||||
*/
|
||||
|
||||
static nir_def *
|
||||
flip_endian(nir_builder *b, nir_def *src, unsigned cnt)
|
||||
{
|
||||
nir_def *v[2];
|
||||
for (unsigned i = 0; i < cnt; ++i) {
|
||||
nir_def *intermediate[4];
|
||||
nir_def *chan = cnt == 1 ? src : nir_channel(b, src, i);
|
||||
for (unsigned j = 0; j < 4; ++j)
|
||||
intermediate[j] = nir_ubfe_imm(b, chan, 8 * j, 8);
|
||||
v[i] = nir_ior(b, nir_ior(b, nir_ishl_imm(b, intermediate[0], 24), nir_ishl_imm(b, intermediate[1], 16)),
|
||||
nir_ior(b, nir_ishl_imm(b, intermediate[2], 8), nir_ishl_imm(b, intermediate[3], 0)));
|
||||
}
|
||||
return cnt == 1 ? v[0] : nir_vec(b, v, cnt);
|
||||
}
|
||||
|
||||
static nir_def *
|
||||
etc1_color_modifier_lookup(nir_builder *b, nir_def *x, nir_def *y)
|
||||
{
|
||||
const unsigned table[8][2] = {{2, 8}, {5, 17}, {9, 29}, {13, 42}, {18, 60}, {24, 80}, {33, 106}, {47, 183}};
|
||||
nir_def *upper = nir_ieq_imm(b, y, 1);
|
||||
nir_def *result = NULL;
|
||||
for (unsigned i = 0; i < 8; ++i) {
|
||||
nir_def *tmp = nir_bcsel(b, upper, nir_imm_int(b, table[i][1]), nir_imm_int(b, table[i][0]));
|
||||
if (result)
|
||||
result = nir_bcsel(b, nir_ieq_imm(b, x, i), tmp, result);
|
||||
else
|
||||
result = tmp;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
static nir_def *
|
||||
etc2_distance_lookup(nir_builder *b, nir_def *x)
|
||||
{
|
||||
const unsigned table[8] = {3, 6, 11, 16, 23, 32, 41, 64};
|
||||
nir_def *result = NULL;
|
||||
for (unsigned i = 0; i < 8; ++i) {
|
||||
if (result)
|
||||
result = nir_bcsel(b, nir_ieq_imm(b, x, i), nir_imm_int(b, table[i]), result);
|
||||
else
|
||||
result = nir_imm_int(b, table[i]);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
static nir_def *
|
||||
etc1_alpha_modifier_lookup(nir_builder *b, nir_def *x, nir_def *y)
|
||||
{
|
||||
const unsigned table[16] = {0xe852, 0xc962, 0xc741, 0xc531, 0xb752, 0xa862, 0xa763, 0xa742,
|
||||
0x9751, 0x9741, 0x9731, 0x9641, 0x9632, 0x9210, 0x8753, 0x8642};
|
||||
nir_def *result = NULL;
|
||||
for (unsigned i = 0; i < 16; ++i) {
|
||||
nir_def *tmp = nir_imm_int(b, table[i]);
|
||||
if (result)
|
||||
result = nir_bcsel(b, nir_ieq_imm(b, x, i), tmp, result);
|
||||
else
|
||||
result = tmp;
|
||||
}
|
||||
return nir_ubfe(b, result, nir_imul_imm(b, y, 4), nir_imm_int(b, 4));
|
||||
}
|
||||
|
||||
static nir_def *
|
||||
etc_extend(nir_builder *b, nir_def *v, int bits)
|
||||
{
|
||||
if (bits == 4)
|
||||
return nir_imul_imm(b, v, 0x11);
|
||||
return nir_ior(b, nir_ishl_imm(b, v, 8 - bits), nir_ushr_imm(b, v, bits - (8 - bits)));
|
||||
}
|
||||
|
||||
static nir_def *
|
||||
decode_etc2_alpha(struct nir_builder *b, nir_def *alpha_payload, nir_def *linear_pixel, bool eac, nir_def *is_signed)
|
||||
{
|
||||
alpha_payload = flip_endian(b, alpha_payload, 2);
|
||||
nir_def *alpha_x = nir_channel(b, alpha_payload, 1);
|
||||
nir_def *alpha_y = nir_channel(b, alpha_payload, 0);
|
||||
nir_def *bit_offset = nir_isub_imm(b, 45, nir_imul_imm(b, linear_pixel, 3));
|
||||
nir_def *base = nir_ubfe_imm(b, alpha_y, 24, 8);
|
||||
nir_def *multiplier = nir_ubfe_imm(b, alpha_y, 20, 4);
|
||||
nir_def *table = nir_ubfe_imm(b, alpha_y, 16, 4);
|
||||
|
||||
if (eac) {
|
||||
nir_def *signed_base = nir_ibfe_imm(b, alpha_y, 24, 8);
|
||||
signed_base = nir_imul_imm(b, signed_base, 8);
|
||||
base = nir_iadd_imm(b, nir_imul_imm(b, base, 8), 4);
|
||||
base = nir_bcsel(b, is_signed, signed_base, base);
|
||||
multiplier = nir_imax(b, nir_imul_imm(b, multiplier, 8), nir_imm_int(b, 1));
|
||||
}
|
||||
|
||||
nir_def *lsb_index = nir_ubfe(b, nir_bcsel(b, nir_uge_imm(b, bit_offset, 32), alpha_y, alpha_x),
|
||||
nir_iand_imm(b, bit_offset, 31), nir_imm_int(b, 2));
|
||||
bit_offset = nir_iadd_imm(b, bit_offset, 2);
|
||||
nir_def *msb = nir_ubfe(b, nir_bcsel(b, nir_uge_imm(b, bit_offset, 32), alpha_y, alpha_x),
|
||||
nir_iand_imm(b, bit_offset, 31), nir_imm_int(b, 1));
|
||||
nir_def *mod = nir_ixor(b, etc1_alpha_modifier_lookup(b, table, lsb_index), nir_iadd_imm(b, msb, -1));
|
||||
nir_def *a = nir_iadd(b, base, nir_imul(b, mod, multiplier));
|
||||
|
||||
nir_def *low_bound = nir_imm_int(b, 0);
|
||||
nir_def *high_bound = nir_imm_int(b, 255);
|
||||
nir_def *final_mult = nir_imm_float(b, 1 / 255.0);
|
||||
if (eac) {
|
||||
low_bound = nir_bcsel(b, is_signed, nir_imm_int(b, -1023), low_bound);
|
||||
high_bound = nir_bcsel(b, is_signed, nir_imm_int(b, 1023), nir_imm_int(b, 2047));
|
||||
final_mult = nir_bcsel(b, is_signed, nir_imm_float(b, 1 / 1023.0), nir_imm_float(b, 1 / 2047.0));
|
||||
}
|
||||
|
||||
return nir_fmul(b, nir_i2f32(b, nir_iclamp(b, a, low_bound, high_bound)), final_mult);
|
||||
}
|
||||
|
||||
static nir_shader *
|
||||
build_shader(struct radv_device *dev)
|
||||
{
|
||||
const struct glsl_type *sampler_type_2d = glsl_sampler_type(GLSL_SAMPLER_DIM_2D, false, true, GLSL_TYPE_UINT);
|
||||
const struct glsl_type *sampler_type_3d = glsl_sampler_type(GLSL_SAMPLER_DIM_3D, false, false, GLSL_TYPE_UINT);
|
||||
const struct glsl_type *img_type_2d = glsl_image_type(GLSL_SAMPLER_DIM_2D, true, GLSL_TYPE_FLOAT);
|
||||
const struct glsl_type *img_type_3d = glsl_image_type(GLSL_SAMPLER_DIM_3D, false, GLSL_TYPE_FLOAT);
|
||||
nir_builder b = radv_meta_init_shader(dev, MESA_SHADER_COMPUTE, "meta_decode_etc");
|
||||
b.shader->info.workgroup_size[0] = 8;
|
||||
b.shader->info.workgroup_size[1] = 8;
|
||||
|
||||
nir_variable *input_img_2d = nir_variable_create(b.shader, nir_var_uniform, sampler_type_2d, "s_tex_2d");
|
||||
input_img_2d->data.descriptor_set = 0;
|
||||
input_img_2d->data.binding = 0;
|
||||
|
||||
nir_variable *input_img_3d = nir_variable_create(b.shader, nir_var_uniform, sampler_type_3d, "s_tex_3d");
|
||||
input_img_2d->data.descriptor_set = 0;
|
||||
input_img_2d->data.binding = 0;
|
||||
|
||||
nir_variable *output_img_2d = nir_variable_create(b.shader, nir_var_image, img_type_2d, "out_img_2d");
|
||||
output_img_2d->data.descriptor_set = 0;
|
||||
output_img_2d->data.binding = 1;
|
||||
|
||||
nir_variable *output_img_3d = nir_variable_create(b.shader, nir_var_image, img_type_3d, "out_img_3d");
|
||||
output_img_3d->data.descriptor_set = 0;
|
||||
output_img_3d->data.binding = 1;
|
||||
|
||||
nir_def *global_id = get_global_ids(&b, 3);
|
||||
|
||||
nir_def *consts = nir_load_push_constant(&b, 4, 32, nir_imm_int(&b, 0), .range = 16);
|
||||
nir_def *consts2 = nir_load_push_constant(&b, 1, 32, nir_imm_int(&b, 0), .base = 0, .range = 4);
|
||||
nir_def *offset = nir_channels(&b, consts, 7);
|
||||
nir_def *format = nir_channel(&b, consts, 3);
|
||||
nir_def *image_type = nir_channel(&b, consts2, 0);
|
||||
nir_def *is_3d = nir_ieq_imm(&b, image_type, VK_IMAGE_TYPE_3D);
|
||||
nir_def *coord = nir_iadd(&b, global_id, offset);
|
||||
nir_def *src_coord = nir_vec3(&b, nir_ushr_imm(&b, nir_channel(&b, coord, 0), 2),
|
||||
nir_ushr_imm(&b, nir_channel(&b, coord, 1), 2), nir_channel(&b, coord, 2));
|
||||
|
||||
nir_variable *payload_var = nir_variable_create(b.shader, nir_var_shader_temp, glsl_vec4_type(), "payload");
|
||||
nir_push_if(&b, is_3d);
|
||||
{
|
||||
nir_def *color = nir_txf_deref(&b, nir_build_deref_var(&b, input_img_3d), src_coord, nir_imm_int(&b, 0));
|
||||
nir_store_var(&b, payload_var, color, 0xf);
|
||||
}
|
||||
nir_push_else(&b, NULL);
|
||||
{
|
||||
nir_def *color = nir_txf_deref(&b, nir_build_deref_var(&b, input_img_2d), src_coord, nir_imm_int(&b, 0));
|
||||
nir_store_var(&b, payload_var, color, 0xf);
|
||||
}
|
||||
nir_pop_if(&b, NULL);
|
||||
|
||||
nir_def *pixel_coord = nir_iand_imm(&b, nir_channels(&b, coord, 3), 3);
|
||||
nir_def *linear_pixel =
|
||||
nir_iadd(&b, nir_imul_imm(&b, nir_channel(&b, pixel_coord, 0), 4), nir_channel(&b, pixel_coord, 1));
|
||||
|
||||
nir_def *payload = nir_load_var(&b, payload_var);
|
||||
nir_variable *color = nir_variable_create(b.shader, nir_var_shader_temp, glsl_vec4_type(), "color");
|
||||
nir_store_var(&b, color, nir_imm_vec4(&b, 1.0, 0.0, 0.0, 1.0), 0xf);
|
||||
nir_push_if(&b, nir_ilt_imm(&b, format, VK_FORMAT_EAC_R11_UNORM_BLOCK));
|
||||
{
|
||||
nir_def *alpha_bits_8 = nir_ige_imm(&b, format, VK_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK);
|
||||
nir_def *alpha_bits_1 = nir_iand(&b, nir_ige_imm(&b, format, VK_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK),
|
||||
nir_ilt_imm(&b, format, VK_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK));
|
||||
|
||||
nir_def *color_payload =
|
||||
nir_bcsel(&b, alpha_bits_8, nir_channels(&b, payload, 0xC), nir_channels(&b, payload, 3));
|
||||
color_payload = flip_endian(&b, color_payload, 2);
|
||||
nir_def *color_y = nir_channel(&b, color_payload, 0);
|
||||
nir_def *color_x = nir_channel(&b, color_payload, 1);
|
||||
nir_def *flip = nir_test_mask(&b, color_y, 1);
|
||||
nir_def *subblock =
|
||||
nir_ushr_imm(&b, nir_bcsel(&b, flip, nir_channel(&b, pixel_coord, 1), nir_channel(&b, pixel_coord, 0)), 1);
|
||||
|
||||
nir_variable *punchthrough = nir_variable_create(b.shader, nir_var_shader_temp, glsl_bool_type(), "punchthrough");
|
||||
nir_def *punchthrough_init = nir_iand(&b, alpha_bits_1, nir_inot(&b, nir_test_mask(&b, color_y, 2)));
|
||||
nir_store_var(&b, punchthrough, punchthrough_init, 0x1);
|
||||
|
||||
nir_variable *etc1_compat = nir_variable_create(b.shader, nir_var_shader_temp, glsl_bool_type(), "etc1_compat");
|
||||
nir_store_var(&b, etc1_compat, nir_imm_false(&b), 0x1);
|
||||
|
||||
nir_variable *alpha_result =
|
||||
nir_variable_create(b.shader, nir_var_shader_temp, glsl_float_type(), "alpha_result");
|
||||
nir_push_if(&b, alpha_bits_8);
|
||||
{
|
||||
nir_store_var(&b, alpha_result, decode_etc2_alpha(&b, nir_channels(&b, payload, 3), linear_pixel, false, NULL),
|
||||
1);
|
||||
}
|
||||
nir_push_else(&b, NULL);
|
||||
{
|
||||
nir_store_var(&b, alpha_result, nir_imm_float(&b, 1.0), 1);
|
||||
}
|
||||
nir_pop_if(&b, NULL);
|
||||
|
||||
const struct glsl_type *uvec3_type = glsl_vector_type(GLSL_TYPE_UINT, 3);
|
||||
nir_variable *rgb_result = nir_variable_create(b.shader, nir_var_shader_temp, uvec3_type, "rgb_result");
|
||||
nir_variable *base_rgb = nir_variable_create(b.shader, nir_var_shader_temp, uvec3_type, "base_rgb");
|
||||
nir_store_var(&b, rgb_result, nir_imm_ivec3(&b, 255, 0, 0), 0x7);
|
||||
|
||||
nir_def *msb = nir_iand_imm(&b, nir_ushr(&b, color_x, nir_iadd_imm(&b, linear_pixel, 15)), 2);
|
||||
nir_def *lsb = nir_iand_imm(&b, nir_ushr(&b, color_x, linear_pixel), 1);
|
||||
|
||||
nir_push_if(&b, nir_iand(&b, nir_inot(&b, alpha_bits_1), nir_inot(&b, nir_test_mask(&b, color_y, 2))));
|
||||
{
|
||||
nir_store_var(&b, etc1_compat, nir_imm_true(&b), 1);
|
||||
nir_def *tmp[3];
|
||||
for (unsigned i = 0; i < 3; ++i)
|
||||
tmp[i] = etc_extend(
|
||||
&b,
|
||||
nir_iand_imm(&b, nir_ushr(&b, color_y, nir_isub_imm(&b, 28 - 8 * i, nir_imul_imm(&b, subblock, 4))),
|
||||
0xf),
|
||||
4);
|
||||
nir_store_var(&b, base_rgb, nir_vec(&b, tmp, 3), 0x7);
|
||||
}
|
||||
nir_push_else(&b, NULL);
|
||||
{
|
||||
nir_def *rb = nir_ubfe_imm(&b, color_y, 27, 5);
|
||||
nir_def *rd = nir_ibfe_imm(&b, color_y, 24, 3);
|
||||
nir_def *gb = nir_ubfe_imm(&b, color_y, 19, 5);
|
||||
nir_def *gd = nir_ibfe_imm(&b, color_y, 16, 3);
|
||||
nir_def *bb = nir_ubfe_imm(&b, color_y, 11, 5);
|
||||
nir_def *bd = nir_ibfe_imm(&b, color_y, 8, 3);
|
||||
nir_def *r1 = nir_iadd(&b, rb, rd);
|
||||
nir_def *g1 = nir_iadd(&b, gb, gd);
|
||||
nir_def *b1 = nir_iadd(&b, bb, bd);
|
||||
|
||||
nir_push_if(&b, nir_ugt_imm(&b, r1, 31));
|
||||
{
|
||||
nir_def *r0 =
|
||||
nir_ior(&b, nir_ubfe_imm(&b, color_y, 24, 2), nir_ishl_imm(&b, nir_ubfe_imm(&b, color_y, 27, 2), 2));
|
||||
nir_def *g0 = nir_ubfe_imm(&b, color_y, 20, 4);
|
||||
nir_def *b0 = nir_ubfe_imm(&b, color_y, 16, 4);
|
||||
nir_def *r2 = nir_ubfe_imm(&b, color_y, 12, 4);
|
||||
nir_def *g2 = nir_ubfe_imm(&b, color_y, 8, 4);
|
||||
nir_def *b2 = nir_ubfe_imm(&b, color_y, 4, 4);
|
||||
nir_def *da =
|
||||
nir_ior(&b, nir_ishl_imm(&b, nir_ubfe_imm(&b, color_y, 2, 2), 1), nir_iand_imm(&b, color_y, 1));
|
||||
nir_def *dist = etc2_distance_lookup(&b, da);
|
||||
nir_def *index = nir_ior(&b, lsb, msb);
|
||||
|
||||
nir_store_var(&b, punchthrough,
|
||||
nir_iand(&b, nir_load_var(&b, punchthrough), nir_ieq_imm(&b, nir_iadd(&b, lsb, msb), 2)),
|
||||
0x1);
|
||||
nir_push_if(&b, nir_ieq_imm(&b, index, 0));
|
||||
{
|
||||
nir_store_var(&b, rgb_result, etc_extend(&b, nir_vec3(&b, r0, g0, b0), 4), 0x7);
|
||||
}
|
||||
nir_push_else(&b, NULL);
|
||||
{
|
||||
|
||||
nir_def *tmp = nir_iadd(&b, etc_extend(&b, nir_vec3(&b, r2, g2, b2), 4),
|
||||
nir_imul(&b, dist, nir_isub_imm(&b, 2, index)));
|
||||
nir_store_var(&b, rgb_result, tmp, 0x7);
|
||||
}
|
||||
nir_pop_if(&b, NULL);
|
||||
}
|
||||
nir_push_else(&b, NULL);
|
||||
nir_push_if(&b, nir_ugt_imm(&b, g1, 31));
|
||||
{
|
||||
nir_def *r0 = nir_ubfe_imm(&b, color_y, 27, 4);
|
||||
nir_def *g0 = nir_ior(&b, nir_ishl_imm(&b, nir_ubfe_imm(&b, color_y, 24, 3), 1),
|
||||
nir_iand_imm(&b, nir_ushr_imm(&b, color_y, 20), 1));
|
||||
nir_def *b0 =
|
||||
nir_ior(&b, nir_ubfe_imm(&b, color_y, 15, 3), nir_iand_imm(&b, nir_ushr_imm(&b, color_y, 16), 8));
|
||||
nir_def *r2 = nir_ubfe_imm(&b, color_y, 11, 4);
|
||||
nir_def *g2 = nir_ubfe_imm(&b, color_y, 7, 4);
|
||||
nir_def *b2 = nir_ubfe_imm(&b, color_y, 3, 4);
|
||||
nir_def *da = nir_iand_imm(&b, color_y, 4);
|
||||
nir_def *db = nir_iand_imm(&b, color_y, 1);
|
||||
nir_def *d = nir_iadd(&b, da, nir_imul_imm(&b, db, 2));
|
||||
nir_def *d0 = nir_iadd(&b, nir_ishl_imm(&b, r0, 16), nir_iadd(&b, nir_ishl_imm(&b, g0, 8), b0));
|
||||
nir_def *d2 = nir_iadd(&b, nir_ishl_imm(&b, r2, 16), nir_iadd(&b, nir_ishl_imm(&b, g2, 8), b2));
|
||||
d = nir_bcsel(&b, nir_uge(&b, d0, d2), nir_iadd_imm(&b, d, 1), d);
|
||||
nir_def *dist = etc2_distance_lookup(&b, d);
|
||||
nir_def *base = nir_bcsel(&b, nir_ine_imm(&b, msb, 0), nir_vec3(&b, r2, g2, b2), nir_vec3(&b, r0, g0, b0));
|
||||
base = etc_extend(&b, base, 4);
|
||||
base = nir_iadd(&b, base, nir_imul(&b, dist, nir_isub_imm(&b, 1, nir_imul_imm(&b, lsb, 2))));
|
||||
nir_store_var(&b, rgb_result, base, 0x7);
|
||||
nir_store_var(&b, punchthrough,
|
||||
nir_iand(&b, nir_load_var(&b, punchthrough), nir_ieq_imm(&b, nir_iadd(&b, lsb, msb), 2)),
|
||||
0x1);
|
||||
}
|
||||
nir_push_else(&b, NULL);
|
||||
nir_push_if(&b, nir_ugt_imm(&b, b1, 31));
|
||||
{
|
||||
nir_def *r0 = nir_ubfe_imm(&b, color_y, 25, 6);
|
||||
nir_def *g0 =
|
||||
nir_ior(&b, nir_ubfe_imm(&b, color_y, 17, 6), nir_iand_imm(&b, nir_ushr_imm(&b, color_y, 18), 0x40));
|
||||
nir_def *b0 = nir_ior(
|
||||
&b, nir_ishl_imm(&b, nir_ubfe_imm(&b, color_y, 11, 2), 3),
|
||||
nir_ior(&b, nir_iand_imm(&b, nir_ushr_imm(&b, color_y, 11), 0x20), nir_ubfe_imm(&b, color_y, 7, 3)));
|
||||
nir_def *rh =
|
||||
nir_ior(&b, nir_iand_imm(&b, color_y, 1), nir_ishl_imm(&b, nir_ubfe_imm(&b, color_y, 2, 5), 1));
|
||||
nir_def *rv = nir_ubfe_imm(&b, color_x, 13, 6);
|
||||
nir_def *gh = nir_ubfe_imm(&b, color_x, 25, 7);
|
||||
nir_def *gv = nir_ubfe_imm(&b, color_x, 6, 7);
|
||||
nir_def *bh = nir_ubfe_imm(&b, color_x, 19, 6);
|
||||
nir_def *bv = nir_ubfe_imm(&b, color_x, 0, 6);
|
||||
|
||||
r0 = etc_extend(&b, r0, 6);
|
||||
g0 = etc_extend(&b, g0, 7);
|
||||
b0 = etc_extend(&b, b0, 6);
|
||||
rh = etc_extend(&b, rh, 6);
|
||||
rv = etc_extend(&b, rv, 6);
|
||||
gh = etc_extend(&b, gh, 7);
|
||||
gv = etc_extend(&b, gv, 7);
|
||||
bh = etc_extend(&b, bh, 6);
|
||||
bv = etc_extend(&b, bv, 6);
|
||||
|
||||
nir_def *rgb = nir_vec3(&b, r0, g0, b0);
|
||||
nir_def *dx = nir_imul(&b, nir_isub(&b, nir_vec3(&b, rh, gh, bh), rgb), nir_channel(&b, pixel_coord, 0));
|
||||
nir_def *dy = nir_imul(&b, nir_isub(&b, nir_vec3(&b, rv, gv, bv), rgb), nir_channel(&b, pixel_coord, 1));
|
||||
rgb = nir_iadd(&b, rgb, nir_ishr_imm(&b, nir_iadd_imm(&b, nir_iadd(&b, dx, dy), 2), 2));
|
||||
nir_store_var(&b, rgb_result, rgb, 0x7);
|
||||
nir_store_var(&b, punchthrough, nir_imm_false(&b), 0x1);
|
||||
}
|
||||
nir_push_else(&b, NULL);
|
||||
{
|
||||
nir_store_var(&b, etc1_compat, nir_imm_true(&b), 1);
|
||||
nir_def *subblock_b = nir_ine_imm(&b, subblock, 0);
|
||||
nir_def *tmp[] = {
|
||||
nir_bcsel(&b, subblock_b, r1, rb),
|
||||
nir_bcsel(&b, subblock_b, g1, gb),
|
||||
nir_bcsel(&b, subblock_b, b1, bb),
|
||||
};
|
||||
nir_store_var(&b, base_rgb, etc_extend(&b, nir_vec(&b, tmp, 3), 5), 0x7);
|
||||
}
|
||||
nir_pop_if(&b, NULL);
|
||||
nir_pop_if(&b, NULL);
|
||||
nir_pop_if(&b, NULL);
|
||||
}
|
||||
nir_pop_if(&b, NULL);
|
||||
nir_push_if(&b, nir_load_var(&b, etc1_compat));
|
||||
{
|
||||
nir_def *etc1_table_index =
|
||||
nir_ubfe(&b, color_y, nir_isub_imm(&b, 5, nir_imul_imm(&b, subblock, 3)), nir_imm_int(&b, 3));
|
||||
nir_def *sgn = nir_isub_imm(&b, 1, msb);
|
||||
sgn = nir_bcsel(&b, nir_load_var(&b, punchthrough), nir_imul(&b, sgn, lsb), sgn);
|
||||
nir_store_var(&b, punchthrough,
|
||||
nir_iand(&b, nir_load_var(&b, punchthrough), nir_ieq_imm(&b, nir_iadd(&b, lsb, msb), 2)), 0x1);
|
||||
nir_def *off = nir_imul(&b, etc1_color_modifier_lookup(&b, etc1_table_index, lsb), sgn);
|
||||
nir_def *result = nir_iadd(&b, nir_load_var(&b, base_rgb), off);
|
||||
nir_store_var(&b, rgb_result, result, 0x7);
|
||||
}
|
||||
nir_pop_if(&b, NULL);
|
||||
nir_push_if(&b, nir_load_var(&b, punchthrough));
|
||||
{
|
||||
nir_store_var(&b, alpha_result, nir_imm_float(&b, 0), 0x1);
|
||||
nir_store_var(&b, rgb_result, nir_imm_ivec3(&b, 0, 0, 0), 0x7);
|
||||
}
|
||||
nir_pop_if(&b, NULL);
|
||||
nir_def *col[4];
|
||||
for (unsigned i = 0; i < 3; ++i)
|
||||
col[i] = nir_fdiv_imm(&b, nir_i2f32(&b, nir_channel(&b, nir_load_var(&b, rgb_result), i)), 255.0);
|
||||
col[3] = nir_load_var(&b, alpha_result);
|
||||
nir_store_var(&b, color, nir_vec(&b, col, 4), 0xf);
|
||||
}
|
||||
nir_push_else(&b, NULL);
|
||||
{ /* EAC */
|
||||
nir_def *is_signed = nir_ior(&b, nir_ieq_imm(&b, format, VK_FORMAT_EAC_R11_SNORM_BLOCK),
|
||||
nir_ieq_imm(&b, format, VK_FORMAT_EAC_R11G11_SNORM_BLOCK));
|
||||
nir_def *val[4];
|
||||
for (int i = 0; i < 2; ++i) {
|
||||
val[i] = decode_etc2_alpha(&b, nir_channels(&b, payload, 3 << (2 * i)), linear_pixel, true, is_signed);
|
||||
}
|
||||
val[2] = nir_imm_float(&b, 0.0);
|
||||
val[3] = nir_imm_float(&b, 1.0);
|
||||
nir_store_var(&b, color, nir_vec(&b, val, 4), 0xf);
|
||||
}
|
||||
nir_pop_if(&b, NULL);
|
||||
|
||||
nir_def *outval = nir_load_var(&b, color);
|
||||
nir_def *img_coord = nir_vec4(&b, nir_channel(&b, coord, 0), nir_channel(&b, coord, 1), nir_channel(&b, coord, 2),
|
||||
nir_undef(&b, 1, 32));
|
||||
|
||||
nir_push_if(&b, is_3d);
|
||||
{
|
||||
nir_image_deref_store(&b, &nir_build_deref_var(&b, output_img_3d)->def, img_coord, nir_undef(&b, 1, 32), outval,
|
||||
nir_imm_int(&b, 0), .image_dim = GLSL_SAMPLER_DIM_3D);
|
||||
}
|
||||
nir_push_else(&b, NULL);
|
||||
{
|
||||
nir_image_deref_store(&b, &nir_build_deref_var(&b, output_img_2d)->def, img_coord, nir_undef(&b, 1, 32), outval,
|
||||
nir_imm_int(&b, 0), .image_dim = GLSL_SAMPLER_DIM_2D, .image_array = true);
|
||||
}
|
||||
nir_pop_if(&b, NULL);
|
||||
return b.shader;
|
||||
}
|
||||
|
||||
static VkResult
|
||||
create_layout(struct radv_device *device)
|
||||
{
|
||||
VkResult result;
|
||||
VkDescriptorSetLayoutCreateInfo ds_create_info = {.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO,
|
||||
.flags = VK_DESCRIPTOR_SET_LAYOUT_CREATE_PUSH_DESCRIPTOR_BIT_KHR,
|
||||
.bindingCount = 2,
|
||||
.pBindings = (VkDescriptorSetLayoutBinding[]){
|
||||
{.binding = 0,
|
||||
.descriptorType = VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE,
|
||||
.descriptorCount = 1,
|
||||
.stageFlags = VK_SHADER_STAGE_COMPUTE_BIT,
|
||||
.pImmutableSamplers = NULL},
|
||||
{.binding = 1,
|
||||
.descriptorType = VK_DESCRIPTOR_TYPE_STORAGE_IMAGE,
|
||||
.descriptorCount = 1,
|
||||
.stageFlags = VK_SHADER_STAGE_COMPUTE_BIT,
|
||||
.pImmutableSamplers = NULL},
|
||||
}};
|
||||
|
||||
result = radv_CreateDescriptorSetLayout(radv_device_to_handle(device), &ds_create_info, &device->meta_state.alloc,
|
||||
&device->meta_state.etc_decode.ds_layout);
|
||||
if (result != VK_SUCCESS)
|
||||
goto fail;
|
||||
|
||||
VkPipelineLayoutCreateInfo pl_create_info = {
|
||||
.sType = VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO,
|
||||
.setLayoutCount = 1,
|
||||
.pSetLayouts = &device->meta_state.etc_decode.ds_layout,
|
||||
.pushConstantRangeCount = 1,
|
||||
.pPushConstantRanges = &(VkPushConstantRange){VK_SHADER_STAGE_COMPUTE_BIT, 0, 20},
|
||||
};
|
||||
|
||||
result = radv_CreatePipelineLayout(radv_device_to_handle(device), &pl_create_info, &device->meta_state.alloc,
|
||||
&device->meta_state.etc_decode.p_layout);
|
||||
if (result != VK_SUCCESS)
|
||||
goto fail;
|
||||
return VK_SUCCESS;
|
||||
fail:
|
||||
return result;
|
||||
}
|
||||
|
||||
static VkResult
|
||||
create_decode_pipeline(struct radv_device *device, VkPipeline *pipeline)
|
||||
{
|
||||
VkResult result;
|
||||
|
||||
mtx_lock(&device->meta_state.mtx);
|
||||
if (*pipeline) {
|
||||
mtx_unlock(&device->meta_state.mtx);
|
||||
return VK_SUCCESS;
|
||||
}
|
||||
|
||||
nir_shader *cs = build_shader(device);
|
||||
|
||||
/* compute shader */
|
||||
|
||||
VkPipelineShaderStageCreateInfo pipeline_shader_stage = {
|
||||
.sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO,
|
||||
.stage = VK_SHADER_STAGE_COMPUTE_BIT,
|
||||
.module = vk_shader_module_handle_from_nir(cs),
|
||||
.pName = "main",
|
||||
.pSpecializationInfo = NULL,
|
||||
};
|
||||
|
||||
VkComputePipelineCreateInfo vk_pipeline_info = {
|
||||
.sType = VK_STRUCTURE_TYPE_COMPUTE_PIPELINE_CREATE_INFO,
|
||||
.stage = pipeline_shader_stage,
|
||||
.flags = 0,
|
||||
.layout = device->meta_state.resolve_compute.p_layout,
|
||||
};
|
||||
|
||||
result = radv_compute_pipeline_create(radv_device_to_handle(device), device->meta_state.cache, &vk_pipeline_info,
|
||||
NULL, pipeline);
|
||||
if (result != VK_SUCCESS)
|
||||
goto fail;
|
||||
|
||||
ralloc_free(cs);
|
||||
mtx_unlock(&device->meta_state.mtx);
|
||||
return VK_SUCCESS;
|
||||
fail:
|
||||
ralloc_free(cs);
|
||||
mtx_unlock(&device->meta_state.mtx);
|
||||
return result;
|
||||
}
|
||||
|
||||
VkResult
|
||||
radv_device_init_meta_etc_decode_state(struct radv_device *device, bool on_demand)
|
||||
{
|
||||
struct radv_meta_state *state = &device->meta_state;
|
||||
VkResult res;
|
||||
|
||||
if (!device->physical_device->emulate_etc2)
|
||||
return VK_SUCCESS;
|
||||
|
||||
res = create_layout(device);
|
||||
if (res != VK_SUCCESS)
|
||||
return res;
|
||||
state->etc_decode.allocator = &state->alloc;
|
||||
state->etc_decode.nir_options = &device->physical_device->nir_options[MESA_SHADER_COMPUTE];
|
||||
state->etc_decode.pipeline_cache = state->cache;
|
||||
vk_texcompress_etc2_init(&device->vk, &state->etc_decode);
|
||||
|
||||
if (on_demand)
|
||||
return VK_SUCCESS;
|
||||
|
||||
return create_decode_pipeline(device, &state->etc_decode.pipeline);
|
||||
return vk_texcompress_etc2_late_init(&device->vk, &state->etc_decode);
|
||||
}
|
||||
|
||||
void
|
||||
radv_device_finish_meta_etc_decode_state(struct radv_device *device)
|
||||
{
|
||||
struct radv_meta_state *state = &device->meta_state;
|
||||
radv_DestroyPipeline(radv_device_to_handle(device), state->etc_decode.pipeline, &state->alloc);
|
||||
radv_DestroyPipelineLayout(radv_device_to_handle(device), state->etc_decode.p_layout, &state->alloc);
|
||||
device->vk.dispatch_table.DestroyDescriptorSetLayout(radv_device_to_handle(device), state->etc_decode.ds_layout,
|
||||
&state->alloc);
|
||||
vk_texcompress_etc2_finish(&device->vk, &state->etc_decode);
|
||||
}
|
||||
|
||||
static VkPipeline
|
||||
radv_get_etc_decode_pipeline(struct radv_cmd_buffer *cmd_buffer)
|
||||
{
|
||||
struct radv_device *device = cmd_buffer->device;
|
||||
VkPipeline *pipeline = &device->meta_state.etc_decode.pipeline;
|
||||
struct radv_meta_state *state = &device->meta_state;
|
||||
VkResult ret;
|
||||
|
||||
if (!*pipeline) {
|
||||
VkResult ret;
|
||||
|
||||
ret = create_decode_pipeline(device, pipeline);
|
||||
if (ret != VK_SUCCESS) {
|
||||
vk_command_buffer_set_error(&cmd_buffer->vk, ret);
|
||||
return VK_NULL_HANDLE;
|
||||
}
|
||||
ret = vk_texcompress_etc2_late_init(&device->vk, &state->etc_decode);
|
||||
if (ret != VK_SUCCESS) {
|
||||
vk_command_buffer_set_error(&cmd_buffer->vk, ret);
|
||||
return VK_NULL_HANDLE;
|
||||
}
|
||||
|
||||
return *pipeline;
|
||||
return state->etc_decode.pipeline;
|
||||
}
|
||||
|
||||
static void
|
||||
@@ -577,10 +77,11 @@ decode_etc(struct radv_cmd_buffer *cmd_buffer, struct radv_image_view *src_iview
|
||||
const VkOffset3D *offset, const VkExtent3D *extent)
|
||||
{
|
||||
struct radv_device *device = cmd_buffer->device;
|
||||
VkPipeline pipeline = radv_get_etc_decode_pipeline(cmd_buffer);
|
||||
|
||||
radv_meta_push_descriptor_set(cmd_buffer, VK_PIPELINE_BIND_POINT_COMPUTE,
|
||||
device->meta_state.resolve_compute.p_layout, 0, /* set */
|
||||
2, /* descriptorWriteCount */
|
||||
device->meta_state.etc_decode.pipeline_layout, 0, /* set */
|
||||
2, /* descriptorWriteCount */
|
||||
(VkWriteDescriptorSet[]){{.sType = VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET,
|
||||
.dstBinding = 0,
|
||||
.dstArrayElement = 0,
|
||||
@@ -605,15 +106,13 @@ decode_etc(struct radv_cmd_buffer *cmd_buffer, struct radv_image_view *src_iview
|
||||
},
|
||||
}}});
|
||||
|
||||
VkPipeline pipeline = radv_get_etc_decode_pipeline(cmd_buffer);
|
||||
|
||||
radv_CmdBindPipeline(radv_cmd_buffer_to_handle(cmd_buffer), VK_PIPELINE_BIND_POINT_COMPUTE, pipeline);
|
||||
|
||||
unsigned push_constants[5] = {
|
||||
offset->x, offset->y, offset->z, src_iview->image->vk.format, src_iview->image->vk.image_type,
|
||||
};
|
||||
|
||||
radv_CmdPushConstants(radv_cmd_buffer_to_handle(cmd_buffer), device->meta_state.resolve_compute.p_layout,
|
||||
radv_CmdPushConstants(radv_cmd_buffer_to_handle(cmd_buffer), device->meta_state.etc_decode.pipeline_layout,
|
||||
VK_SHADER_STAGE_COMPUTE_BIT, 0, 20, push_constants);
|
||||
radv_unaligned_dispatch(cmd_buffer, extent->width, extent->height, extent->depth);
|
||||
}
|
||||
@@ -635,15 +134,14 @@ radv_meta_decode_etc(struct radv_cmd_buffer *cmd_buffer, struct radv_image *imag
|
||||
extent = vk_image_sanitize_extent(&image->vk, extent);
|
||||
offset = vk_image_sanitize_offset(&image->vk, offset);
|
||||
|
||||
VkFormat load_format =
|
||||
vk_format_get_blocksize(image->vk.format) == 16 ? VK_FORMAT_R32G32B32A32_UINT : VK_FORMAT_R32G32_UINT;
|
||||
VkFormat load_format = vk_texcompress_etc2_load_format(image->vk.format);
|
||||
struct radv_image_view src_iview;
|
||||
radv_image_view_init(
|
||||
&src_iview, cmd_buffer->device,
|
||||
&(VkImageViewCreateInfo){
|
||||
.sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO,
|
||||
.image = radv_image_to_handle(image),
|
||||
.viewType = radv_meta_get_view_type(image),
|
||||
.viewType = vk_texcompress_etc2_image_view_type(image->vk.image_type),
|
||||
.format = load_format,
|
||||
.subresourceRange =
|
||||
{
|
||||
@@ -656,30 +154,14 @@ radv_meta_decode_etc(struct radv_cmd_buffer *cmd_buffer, struct radv_image *imag
|
||||
},
|
||||
0, NULL);
|
||||
|
||||
VkFormat store_format;
|
||||
switch (image->vk.format) {
|
||||
case VK_FORMAT_EAC_R11_UNORM_BLOCK:
|
||||
store_format = VK_FORMAT_R16_UNORM;
|
||||
break;
|
||||
case VK_FORMAT_EAC_R11_SNORM_BLOCK:
|
||||
store_format = VK_FORMAT_R16_SNORM;
|
||||
break;
|
||||
case VK_FORMAT_EAC_R11G11_UNORM_BLOCK:
|
||||
store_format = VK_FORMAT_R16G16_UNORM;
|
||||
break;
|
||||
case VK_FORMAT_EAC_R11G11_SNORM_BLOCK:
|
||||
store_format = VK_FORMAT_R16G16_SNORM;
|
||||
break;
|
||||
default:
|
||||
store_format = VK_FORMAT_R8G8B8A8_UNORM;
|
||||
}
|
||||
VkFormat store_format = vk_texcompress_etc2_store_format(image->vk.format);
|
||||
struct radv_image_view dst_iview;
|
||||
radv_image_view_init(
|
||||
&dst_iview, cmd_buffer->device,
|
||||
&(VkImageViewCreateInfo){
|
||||
.sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO,
|
||||
.image = radv_image_to_handle(image),
|
||||
.viewType = radv_meta_get_view_type(image),
|
||||
.viewType = vk_texcompress_etc2_image_view_type(image->vk.image_type),
|
||||
.format = store_format,
|
||||
.subresourceRange =
|
||||
{
|
||||
|
@@ -531,38 +531,13 @@ radv_patch_image_from_extra_info(struct radv_device *device, struct radv_image *
|
||||
return VK_SUCCESS;
|
||||
}
|
||||
|
||||
static VkFormat
|
||||
etc2_emulation_format(VkFormat format)
|
||||
{
|
||||
switch (format) {
|
||||
case VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK:
|
||||
case VK_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK:
|
||||
case VK_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK:
|
||||
return VK_FORMAT_R8G8B8A8_UNORM;
|
||||
case VK_FORMAT_ETC2_R8G8B8_SRGB_BLOCK:
|
||||
case VK_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK:
|
||||
case VK_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK:
|
||||
return VK_FORMAT_R8G8B8A8_SRGB;
|
||||
case VK_FORMAT_EAC_R11_UNORM_BLOCK:
|
||||
return VK_FORMAT_R16_UNORM;
|
||||
case VK_FORMAT_EAC_R11_SNORM_BLOCK:
|
||||
return VK_FORMAT_R16_SNORM;
|
||||
case VK_FORMAT_EAC_R11G11_UNORM_BLOCK:
|
||||
return VK_FORMAT_R16G16_UNORM;
|
||||
case VK_FORMAT_EAC_R11G11_SNORM_BLOCK:
|
||||
return VK_FORMAT_R16G16_SNORM;
|
||||
default:
|
||||
unreachable("Unhandled ETC format");
|
||||
}
|
||||
}
|
||||
|
||||
static VkFormat
|
||||
radv_image_get_plane_format(const struct radv_physical_device *pdev, const struct radv_image *image, unsigned plane)
|
||||
{
|
||||
if (pdev->emulate_etc2 && vk_format_description(image->vk.format)->layout == UTIL_FORMAT_LAYOUT_ETC) {
|
||||
if (plane == 0)
|
||||
return image->vk.format;
|
||||
return etc2_emulation_format(image->vk.format);
|
||||
return vk_texcompress_etc2_emulation_format(image->vk.format);
|
||||
}
|
||||
return vk_format_get_plane_format(image->vk.format, plane);
|
||||
}
|
||||
@@ -2197,8 +2172,8 @@ radv_image_view_init(struct radv_image_view *iview, struct radv_device *device,
|
||||
const struct util_format_description *desc = vk_format_description(iview->vk.format);
|
||||
if (desc->layout == UTIL_FORMAT_LAYOUT_ETC) {
|
||||
iview->plane_id = 1;
|
||||
iview->vk.view_format = etc2_emulation_format(iview->vk.format);
|
||||
iview->vk.format = etc2_emulation_format(iview->vk.format);
|
||||
iview->vk.view_format = vk_texcompress_etc2_emulation_format(iview->vk.format);
|
||||
iview->vk.format = vk_texcompress_etc2_emulation_format(iview->vk.format);
|
||||
}
|
||||
|
||||
plane_count = 1;
|
||||
|
@@ -69,6 +69,7 @@
|
||||
#include "vk_queue.h"
|
||||
#include "vk_sampler.h"
|
||||
#include "vk_shader_module.h"
|
||||
#include "vk_texcompress_etc2.h"
|
||||
#include "vk_util.h"
|
||||
#include "vk_video.h"
|
||||
#include "vk_ycbcr_conversion.h"
|
||||
@@ -738,11 +739,7 @@ struct radv_meta_state {
|
||||
} null;
|
||||
} accel_struct_build;
|
||||
|
||||
struct {
|
||||
VkDescriptorSetLayout ds_layout;
|
||||
VkPipelineLayout p_layout;
|
||||
VkPipeline pipeline;
|
||||
} etc_decode;
|
||||
struct vk_texcompress_etc2_state etc_decode;
|
||||
|
||||
struct {
|
||||
VkDescriptorSetLayout ds_layout;
|
||||
|
Reference in New Issue
Block a user