Merge pull request #3483 from namkazt/patch-1
vk_rasterizer: fix mistype on SetupGraphicsImages
This commit is contained in:
commit
00e9ba0603
|
@ -854,7 +854,7 @@ void RasterizerVulkan::SetupGraphicsTextures(const ShaderEntries& entries, std::
|
||||||
|
|
||||||
void RasterizerVulkan::SetupGraphicsImages(const ShaderEntries& entries, std::size_t stage) {
|
void RasterizerVulkan::SetupGraphicsImages(const ShaderEntries& entries, std::size_t stage) {
|
||||||
MICROPROFILE_SCOPE(Vulkan_Images);
|
MICROPROFILE_SCOPE(Vulkan_Images);
|
||||||
const auto& gpu = system.GPU().KeplerCompute();
|
const auto& gpu = system.GPU().Maxwell3D();
|
||||||
for (const auto& entry : entries.images) {
|
for (const auto& entry : entries.images) {
|
||||||
const auto tic = GetTextureInfo(gpu, entry, stage).tic;
|
const auto tic = GetTextureInfo(gpu, entry, stage).tic;
|
||||||
SetupImage(tic, entry);
|
SetupImage(tic, entry);
|
||||||
|
|
Reference in New Issue