diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-02-04 21:59:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-04 21:59:33 +0100 |
commit | 18c981b99606b40897d8bc2da218e34509873246 (patch) | |
tree | 7b95528950ba5644b07c3c9340ebdadb0c41db3d /src/video_core/renderer_opengl | |
parent | changed the WIN32 macro in microprofileui (#2528) (diff) | |
parent | Pica/Texture: Move part of ETC1 decoding to new file and cleanups (diff) | |
download | yuzu-18c981b99606b40897d8bc2da218e34509873246.tar yuzu-18c981b99606b40897d8bc2da218e34509873246.tar.gz yuzu-18c981b99606b40897d8bc2da218e34509873246.tar.bz2 yuzu-18c981b99606b40897d8bc2da218e34509873246.tar.lz yuzu-18c981b99606b40897d8bc2da218e34509873246.tar.xz yuzu-18c981b99606b40897d8bc2da218e34509873246.tar.zst yuzu-18c981b99606b40897d8bc2da218e34509873246.zip |
Diffstat (limited to 'src/video_core/renderer_opengl')
-rw-r--r-- | src/video_core/renderer_opengl/gl_rasterizer_cache.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/video_core/renderer_opengl/gl_rasterizer_cache.cpp b/src/video_core/renderer_opengl/gl_rasterizer_cache.cpp index 1e7eedecb..60380257a 100644 --- a/src/video_core/renderer_opengl/gl_rasterizer_cache.cpp +++ b/src/video_core/renderer_opengl/gl_rasterizer_cache.cpp @@ -17,10 +17,10 @@ #include "common/vector_math.h" #include "core/frontend/emu_window.h" #include "core/memory.h" -#include "video_core/debug_utils/debug_utils.h" #include "video_core/pica_state.h" #include "video_core/renderer_opengl/gl_rasterizer_cache.h" #include "video_core/renderer_opengl/gl_state.h" +#include "video_core/texture/texture_decode.h" #include "video_core/utils.h" #include "video_core/video_core.h" @@ -339,17 +339,16 @@ CachedSurface* RasterizerCacheOpenGL::GetSurface(const CachedSurface& params, bo std::vector<Math::Vec4<u8>> tex_buffer(params.width * params.height); - Pica::DebugUtils::TextureInfo tex_info; + Pica::Texture::TextureInfo tex_info; tex_info.width = params.width; tex_info.height = params.height; - tex_info.stride = - params.width * CachedSurface::GetFormatBpp(params.pixel_format) / 8; tex_info.format = (Pica::Regs::TextureFormat)params.pixel_format; + tex_info.SetDefaultStride(); tex_info.physical_address = params.addr; for (unsigned y = 0; y < params.height; ++y) { for (unsigned x = 0; x < params.width; ++x) { - tex_buffer[x + params.width * y] = Pica::DebugUtils::LookupTexture( + tex_buffer[x + params.width * y] = Pica::Texture::LookupTexture( texture_src_data, x, params.height - 1 - y, tex_info); } } @@ -512,8 +511,9 @@ CachedSurface* RasterizerCacheOpenGL::GetSurfaceRect(const CachedSurface& params CachedSurface* RasterizerCacheOpenGL::GetTextureSurface( const Pica::Regs::FullTextureConfig& config) { - Pica::DebugUtils::TextureInfo info = - Pica::DebugUtils::TextureInfo::FromPicaRegister(config.config, config.format); + + Pica::Texture::TextureInfo info = + Pica::Texture::TextureInfo::FromPicaRegister(config.config, config.format); CachedSurface params; params.addr = info.physical_address; |