42 lines
1.8 KiB
HLSL
42 lines
1.8 KiB
HLSL
#include "texture_load.hlsli"
|
|
|
|
Buffer<uint4> xe_texture_load_source : register(t0);
|
|
RWBuffer<uint4> xe_texture_load_dest : register(u0);
|
|
|
|
[numthreads(4, 32, 1)]
|
|
void main(uint3 xe_thread_id : SV_DispatchThreadID) {
|
|
// 1 thread = 8 packed 32-bit texels with the externally provided function
|
|
// (XE_TEXTURE_LOAD_32BPB_TO_64BPB) for converting to 64bpb - useful for
|
|
// expansion of hendeca (10:11:11 or 11:11:10) to unorm16/snorm16.
|
|
uint3 block_index = xe_thread_id << uint3(3, 0, 0);
|
|
[branch] if (any(block_index >= xe_texture_load_size_blocks)) {
|
|
return;
|
|
}
|
|
int block_offset_host =
|
|
(XeTextureHostLinearOffset(int3(block_index) << int3(1, 1, 0),
|
|
xe_texture_load_size_blocks.y << 1,
|
|
xe_texture_load_host_pitch, 8u) +
|
|
xe_texture_load_host_base) >> 4;
|
|
int elements_pitch_host = xe_texture_load_host_pitch >> 4;
|
|
int block_offset_guest =
|
|
XeTextureLoadGuestBlockOffset(int3(block_index), 4u, 2u) >> (4 - 2);
|
|
uint endian = XeTextureLoadEndian32();
|
|
int i;
|
|
[unroll] for (i = 0; i < 8; i += 2) {
|
|
if (i == 4 && XeTextureLoadIsTiled()) {
|
|
// Odd 4 blocks start = even 4 blocks end + 16 guest bytes when tiled.
|
|
block_offset_guest += 1 << 2;
|
|
}
|
|
// TTBB TTBB -> TTTT on the top row, BBBB on the bottom row.
|
|
XE_TEXTURE_LOAD_32BPB_TO_64BPB(
|
|
XeEndianSwap32(xe_texture_load_source[block_offset_guest++], endian),
|
|
xe_texture_load_dest[block_offset_host],
|
|
xe_texture_load_dest[block_offset_host + elements_pitch_host]);
|
|
XE_TEXTURE_LOAD_32BPB_TO_64BPB(
|
|
XeEndianSwap32(xe_texture_load_source[block_offset_guest++], endian),
|
|
xe_texture_load_dest[block_offset_host + 1],
|
|
xe_texture_load_dest[block_offset_host + elements_pitch_host + 1]);
|
|
block_offset_host += 2;
|
|
}
|
|
}
|