diff options
author | Ameer J <52414509+ameerj@users.noreply.github.com> | 2023-08-02 01:43:22 +0200 |
---|---|---|
committer | Ameer J <52414509+ameerj@users.noreply.github.com> | 2023-08-06 20:54:57 +0200 |
commit | 3494fce86467878cd62a2faf54da2958b7495a17 (patch) | |
tree | f913a27725567fdf4ee5eabfe8db659f24aea97d /src | |
parent | const, pack result_vector and replicate tables, (diff) | |
download | yuzu-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 |
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/renderer_opengl/util_shaders.cpp | 1 |
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), |