early-access version 2909
This commit is contained in:
parent
bb012d2194
commit
f6cc65a28d
3 changed files with 3 additions and 95 deletions
|
@ -1,7 +1,7 @@
|
||||||
yuzu emulator early access
|
yuzu emulator early access
|
||||||
=============
|
=============
|
||||||
|
|
||||||
This is the source code for early-access 2908.
|
This is the source code for early-access 2909.
|
||||||
|
|
||||||
## Legal Notice
|
## Legal Notice
|
||||||
|
|
||||||
|
|
|
@ -172,7 +172,7 @@ struct FormatTuple {
|
||||||
{VK_FORMAT_R8G8_SINT, Attachable | Storage}, // R8G8_SINT
|
{VK_FORMAT_R8G8_SINT, Attachable | Storage}, // R8G8_SINT
|
||||||
{VK_FORMAT_R8G8_UINT, Attachable | Storage}, // R8G8_UINT
|
{VK_FORMAT_R8G8_UINT, Attachable | Storage}, // R8G8_UINT
|
||||||
{VK_FORMAT_R32G32_UINT, Attachable | Storage}, // R32G32_UINT
|
{VK_FORMAT_R32G32_UINT, Attachable | Storage}, // R32G32_UINT
|
||||||
{VK_FORMAT_UNDEFINED}, // R16G16B16X16_FLOAT
|
{VK_FORMAT_R16G16B16A16_SFLOAT, Attachable | Storage}, // R16G16B16X16_FLOAT
|
||||||
{VK_FORMAT_R32_UINT, Attachable | Storage}, // R32_UINT
|
{VK_FORMAT_R32_UINT, Attachable | Storage}, // R32_UINT
|
||||||
{VK_FORMAT_R32_SINT, Attachable | Storage}, // R32_SINT
|
{VK_FORMAT_R32_SINT, Attachable | Storage}, // R32_SINT
|
||||||
{VK_FORMAT_ASTC_8x8_UNORM_BLOCK}, // ASTC_2D_8X8_UNORM
|
{VK_FORMAT_ASTC_8x8_UNORM_BLOCK}, // ASTC_2D_8X8_UNORM
|
||||||
|
|
|
@ -126,7 +126,7 @@ void SwizzleSubrectImpl(std::span<u8> output, std::span<const u8> input, u32 wid
|
||||||
const u32 offset_y = (block_y >> block_height) * block_size +
|
const u32 offset_y = (block_y >> block_height) * block_size +
|
||||||
((block_y & block_height_mask) << GOB_SIZE_SHIFT);
|
((block_y & block_height_mask) << GOB_SIZE_SHIFT);
|
||||||
|
|
||||||
u32 swizzled_x = 0;
|
u32 swizzled_x = pdep<SWIZZLE_X_BITS>(origin_x * BYTES_PER_PIXEL);
|
||||||
for (u32 column = 0; column < extent_x;
|
for (u32 column = 0; column < extent_x;
|
||||||
++column, incrpdep<SWIZZLE_X_BITS, BYTES_PER_PIXEL>(swizzled_x)) {
|
++column, incrpdep<SWIZZLE_X_BITS, BYTES_PER_PIXEL>(swizzled_x)) {
|
||||||
const u32 x = (column + origin_x) * BYTES_PER_PIXEL;
|
const u32 x = (column + origin_x) * BYTES_PER_PIXEL;
|
||||||
|
@ -173,98 +173,6 @@ void Swizzle(std::span<u8> output, std::span<const u8> input, u32 bytes_per_pixe
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
template <u32 BYTES_PER_PIXEL>
|
|
||||||
void SwizzleSubrect(u32 subrect_width, u32 subrect_height, u32 source_pitch, u32 swizzled_width,
|
|
||||||
u8* swizzled_data, const u8* unswizzled_data, u32 block_height_bit,
|
|
||||||
u32 offset_x, u32 offset_y) {
|
|
||||||
const u32 block_height = 1U << block_height_bit;
|
|
||||||
const u32 image_width_in_gobs =
|
|
||||||
(swizzled_width * BYTES_PER_PIXEL + (GOB_SIZE_X - 1)) / GOB_SIZE_X;
|
|
||||||
for (u32 line = 0; line < subrect_height; ++line) {
|
|
||||||
const u32 dst_y = line + offset_y;
|
|
||||||
const u32 gob_address_y =
|
|
||||||
(dst_y / (GOB_SIZE_Y * block_height)) * GOB_SIZE * block_height * image_width_in_gobs +
|
|
||||||
((dst_y % (GOB_SIZE_Y * block_height)) / GOB_SIZE_Y) * GOB_SIZE;
|
|
||||||
|
|
||||||
const u32 swizzled_y = pdep<SWIZZLE_Y_BITS>(dst_y);
|
|
||||||
u32 swizzled_x = pdep<SWIZZLE_X_BITS>(offset_x * BYTES_PER_PIXEL);
|
|
||||||
for (u32 x = 0; x < subrect_width;
|
|
||||||
++x, incrpdep<SWIZZLE_X_BITS, BYTES_PER_PIXEL>(swizzled_x)) {
|
|
||||||
const u32 dst_x = x + offset_x;
|
|
||||||
const u32 gob_address =
|
|
||||||
gob_address_y + (dst_x * BYTES_PER_PIXEL / GOB_SIZE_X) * GOB_SIZE * block_height;
|
|
||||||
const u32 swizzled_offset = gob_address + (swizzled_x | swizzled_y);
|
|
||||||
const u32 unswizzled_offset = line * source_pitch + x * BYTES_PER_PIXEL;
|
|
||||||
|
|
||||||
const u8* const source_line = unswizzled_data + unswizzled_offset;
|
|
||||||
u8* const dest_addr = swizzled_data + swizzled_offset;
|
|
||||||
std::memcpy(dest_addr, source_line, BYTES_PER_PIXEL);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
template <u32 BYTES_PER_PIXEL>
|
|
||||||
void UnswizzleSubrect(u32 line_length_in, u32 line_count, u32 pitch, u32 width, u32 block_height,
|
|
||||||
u32 origin_x, u32 origin_y, u8* output, const u8* input) {
|
|
||||||
const u32 stride = width * BYTES_PER_PIXEL;
|
|
||||||
const u32 gobs_in_x = (stride + GOB_SIZE_X - 1) / GOB_SIZE_X;
|
|
||||||
const u32 block_size = gobs_in_x << (GOB_SIZE_SHIFT + block_height);
|
|
||||||
|
|
||||||
const u32 block_height_mask = (1U << block_height) - 1;
|
|
||||||
const u32 x_shift = GOB_SIZE_SHIFT + block_height;
|
|
||||||
|
|
||||||
for (u32 line = 0; line < line_count; ++line) {
|
|
||||||
const u32 src_y = line + origin_y;
|
|
||||||
const u32 swizzled_y = pdep<SWIZZLE_Y_BITS>(src_y);
|
|
||||||
|
|
||||||
const u32 block_y = src_y >> GOB_SIZE_Y_SHIFT;
|
|
||||||
const u32 src_offset_y = (block_y >> block_height) * block_size +
|
|
||||||
((block_y & block_height_mask) << GOB_SIZE_SHIFT);
|
|
||||||
|
|
||||||
u32 swizzled_x = pdep<SWIZZLE_X_BITS>(origin_x * BYTES_PER_PIXEL);
|
|
||||||
for (u32 column = 0; column < line_length_in;
|
|
||||||
++column, incrpdep<SWIZZLE_X_BITS, BYTES_PER_PIXEL>(swizzled_x)) {
|
|
||||||
const u32 src_x = (column + origin_x) * BYTES_PER_PIXEL;
|
|
||||||
const u32 src_offset_x = (src_x >> GOB_SIZE_X_SHIFT) << x_shift;
|
|
||||||
|
|
||||||
const u32 swizzled_offset = src_offset_y + src_offset_x + (swizzled_x | swizzled_y);
|
|
||||||
const u32 unswizzled_offset = line * pitch + column * BYTES_PER_PIXEL;
|
|
||||||
|
|
||||||
std::memcpy(output + unswizzled_offset, input + swizzled_offset, BYTES_PER_PIXEL);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
template <u32 BYTES_PER_PIXEL>
|
|
||||||
void SwizzleSliceToVoxel(u32 line_length_in, u32 line_count, u32 pitch, u32 width, u32 height,
|
|
||||||
u32 block_height, u32 block_depth, u32 origin_x, u32 origin_y, u8* output,
|
|
||||||
const u8* input) {
|
|
||||||
UNIMPLEMENTED_IF(origin_x > 0);
|
|
||||||
UNIMPLEMENTED_IF(origin_y > 0);
|
|
||||||
|
|
||||||
const u32 stride = width * BYTES_PER_PIXEL;
|
|
||||||
const u32 gobs_in_x = (stride + GOB_SIZE_X - 1) / GOB_SIZE_X;
|
|
||||||
const u32 block_size = gobs_in_x << (GOB_SIZE_SHIFT + block_height + block_depth);
|
|
||||||
|
|
||||||
const u32 block_height_mask = (1U << block_height) - 1;
|
|
||||||
const u32 x_shift = static_cast<u32>(GOB_SIZE_SHIFT) + block_height + block_depth;
|
|
||||||
|
|
||||||
for (u32 line = 0; line < line_count; ++line) {
|
|
||||||
const u32 swizzled_y = pdep<SWIZZLE_Y_BITS>(line);
|
|
||||||
const u32 block_y = line / GOB_SIZE_Y;
|
|
||||||
const u32 dst_offset_y =
|
|
||||||
(block_y >> block_height) * block_size + (block_y & block_height_mask) * GOB_SIZE;
|
|
||||||
|
|
||||||
u32 swizzled_x = 0;
|
|
||||||
for (u32 x = 0; x < line_length_in; ++x, incrpdep<SWIZZLE_X_BITS, 1>(swizzled_x)) {
|
|
||||||
const u32 dst_offset =
|
|
||||||
((x / GOB_SIZE_X) << x_shift) + dst_offset_y + (swizzled_x | swizzled_y);
|
|
||||||
const u32 src_offset = x * BYTES_PER_PIXEL + line * pitch;
|
|
||||||
std::memcpy(output + dst_offset, input + src_offset, BYTES_PER_PIXEL);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
} // Anonymous namespace
|
} // Anonymous namespace
|
||||||
|
|
||||||
void UnswizzleTexture(std::span<u8> output, std::span<const u8> input, u32 bytes_per_pixel,
|
void UnswizzleTexture(std::span<u8> output, std::span<const u8> input, u32 bytes_per_pixel,
|
||||||
|
|
Loading…
Reference in a new issue