summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_rasterizer_cache.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-04-08 22:26:34 +0200
committerFernandoS27 <fsahmkow27@gmail.com>2019-04-08 23:16:02 +0200
commit9f168330974b474225b8fa6bb8d0dac0d1951325 (patch)
treeaaa14639d08c9abaf1733ffd861d34d872cb503a /src/video_core/renderer_opengl/gl_rasterizer_cache.h
parentMerge pull request #2300 from FernandoS27/null-shader (diff)
downloadyuzu-9f168330974b474225b8fa6bb8d0dac0d1951325.tar
yuzu-9f168330974b474225b8fa6bb8d0dac0d1951325.tar.gz
yuzu-9f168330974b474225b8fa6bb8d0dac0d1951325.tar.bz2
yuzu-9f168330974b474225b8fa6bb8d0dac0d1951325.tar.lz
yuzu-9f168330974b474225b8fa6bb8d0dac0d1951325.tar.xz
yuzu-9f168330974b474225b8fa6bb8d0dac0d1951325.tar.zst
yuzu-9f168330974b474225b8fa6bb8d0dac0d1951325.zip
Diffstat (limited to 'src/video_core/renderer_opengl/gl_rasterizer_cache.h')
-rw-r--r--src/video_core/renderer_opengl/gl_rasterizer_cache.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/video_core/renderer_opengl/gl_rasterizer_cache.h b/src/video_core/renderer_opengl/gl_rasterizer_cache.h
index ad4fd3ad2..db280dbb3 100644
--- a/src/video_core/renderer_opengl/gl_rasterizer_cache.h
+++ b/src/video_core/renderer_opengl/gl_rasterizer_cache.h
@@ -11,6 +11,7 @@
#include <vector>
#include "common/alignment.h"
+#include "common/bit_util.h"
#include "common/common_types.h"
#include "common/hash.h"
#include "common/math_util.h"
@@ -205,6 +206,13 @@ struct SurfaceParams {
return bd;
}
+ u32 RowAlign(u32 mip_level) const {
+ const u32 m_width = MipWidth(mip_level);
+ const u32 bytes_per_pixel = GetBytesPerPixel(pixel_format);
+ const u32 l2 = Common::CountTrailingZeroes32(m_width * bytes_per_pixel);
+ return (1U << l2);
+ }
+
/// Creates SurfaceParams from a texture configuration
static SurfaceParams CreateForTexture(const Tegra::Texture::FullTextureInfo& config,
const GLShader::SamplerEntry& entry);