summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmeer J <52414509+ameerj@users.noreply.github.com>2023-08-02 01:43:22 +0200
committerAmeer J <52414509+ameerj@users.noreply.github.com>2023-08-06 20:54:57 +0200
commit3494fce86467878cd62a2faf54da2958b7495a17 (patch)
treef913a27725567fdf4ee5eabfe8db659f24aea97d
parentconst, pack result_vector and replicate tables, (diff)
downloadyuzu-3494fce86467878cd62a2faf54da2958b7495a17.tar
yuzu-3494fce86467878cd62a2faf54da2958b7495a17.tar.gz
yuzu-3494fce86467878cd62a2faf54da2958b7495a17.tar.bz2
yuzu-3494fce86467878cd62a2faf54da2958b7495a17.tar.lz
yuzu-3494fce86467878cd62a2faf54da2958b7495a17.tar.xz
yuzu-3494fce86467878cd62a2faf54da2958b7495a17.tar.zst
yuzu-3494fce86467878cd62a2faf54da2958b7495a17.zip
-rw-r--r--src/video_core/renderer_opengl/util_shaders.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/renderer_opengl/util_shaders.cpp b/src/video_core/renderer_opengl/util_shaders.cpp
index 544982d18..c437013e6 100644
--- a/src/video_core/renderer_opengl/util_shaders.cpp
+++ b/src/video_core/renderer_opengl/util_shaders.cpp
@@ -68,6 +68,7 @@ void UtilShaders::ASTCDecode(Image& image, const StagingBufferMap& map,
std::span<const VideoCommon::SwizzleParameters> swizzles) {
static constexpr GLuint BINDING_INPUT_BUFFER = 0;
static constexpr GLuint BINDING_OUTPUT_IMAGE = 0;
+ program_manager.LocalMemoryWarmup();
const Extent2D tile_size{
.width = VideoCore::Surface::DefaultBlockWidth(image.info.format),