mirror of
https://github.com/libretro/RetroArch
synced 2025-04-04 13:20:15 +00:00
Basic LUT work.
This commit is contained in:
parent
7813d40c9e
commit
cbca9513ab
@ -2275,8 +2275,6 @@ static unique_ptr<StaticTexture> vulkan_filter_chain_load_lut(VkCommandBuffer cm
|
|||||||
ptr = buffer->map();
|
ptr = buffer->map();
|
||||||
memcpy(ptr, image.pixels, image.width * image.height * sizeof(uint32_t));
|
memcpy(ptr, image.pixels, image.width * image.height * sizeof(uint32_t));
|
||||||
buffer->unmap();
|
buffer->unmap();
|
||||||
image_texture_free(&image);
|
|
||||||
image.pixels = nullptr;
|
|
||||||
|
|
||||||
image_layout_transition(cmd, tex,
|
image_layout_transition(cmd, tex,
|
||||||
VK_IMAGE_LAYOUT_UNDEFINED, VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL,
|
VK_IMAGE_LAYOUT_UNDEFINED, VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL,
|
||||||
@ -2299,6 +2297,9 @@ static unique_ptr<StaticTexture> vulkan_filter_chain_load_lut(VkCommandBuffer cm
|
|||||||
VK_ACCESS_TRANSFER_WRITE_BIT, VK_ACCESS_SHADER_READ_BIT,
|
VK_ACCESS_TRANSFER_WRITE_BIT, VK_ACCESS_SHADER_READ_BIT,
|
||||||
VK_PIPELINE_STAGE_TRANSFER_BIT, VK_PIPELINE_STAGE_FRAGMENT_SHADER_BIT);
|
VK_PIPELINE_STAGE_TRANSFER_BIT, VK_PIPELINE_STAGE_FRAGMENT_SHADER_BIT);
|
||||||
|
|
||||||
|
image_texture_free(&image);
|
||||||
|
image.pixels = nullptr;
|
||||||
|
|
||||||
return unique_ptr<StaticTexture>(new StaticTexture(shader->id, info->device,
|
return unique_ptr<StaticTexture>(new StaticTexture(shader->id, info->device,
|
||||||
tex, view, memory, move(buffer), image.width, image.height));
|
tex, view, memory, move(buffer), image.width, image.height));
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user