aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/textures
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-10-29 22:34:00 -0400
committerGitHub <noreply@github.com>2018-10-29 22:34:00 -0400
commitc5a849212f6a1ee2945e4584bcda50a082872336 (patch)
tree580b80a9c68c78f6e28b49bff2263fe421377972 /src/video_core/textures
parentf1cb425d9228a063eb464479a69400ff915b9fc1 (diff)
parentdde3094058358cfeaa436b4324adda305b4570bf (diff)
Merge pull request #1580 from FernandoS27/mm-impl
Implemented Mipmaps
Diffstat (limited to 'src/video_core/textures')
-rw-r--r--src/video_core/textures/decoders.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/video_core/textures/decoders.h b/src/video_core/textures/decoders.h
index 4726f54a5..b390219e4 100644
--- a/src/video_core/textures/decoders.h
+++ b/src/video_core/textures/decoders.h
@@ -10,6 +10,12 @@
namespace Tegra::Texture {
+// GOBSize constant. Calculated by 64 bytes in x multiplied by 8 y coords, represents
+// an small rect of (64/bytes_per_pixel)X8.
+inline std::size_t GetGOBSize() {
+ return 512;
+}
+
/**
* Unswizzles a swizzled texture without changing its format.
*/