diff options
author | Lioncash <mathew1800@gmail.com> | 2018-12-11 05:44:16 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-12-11 05:44:18 +0100 |
commit | 861bfdbf5def6a468017b66cd091661c0fc84202 (patch) | |
tree | 1db7a71e818087191ee13d031b0352872ff220cc /src | |
parent | Merge pull request #1846 from lioncash/dir (diff) | |
download | yuzu-861bfdbf5def6a468017b66cd091661c0fc84202.tar yuzu-861bfdbf5def6a468017b66cd091661c0fc84202.tar.gz yuzu-861bfdbf5def6a468017b66cd091661c0fc84202.tar.bz2 yuzu-861bfdbf5def6a468017b66cd091661c0fc84202.tar.lz yuzu-861bfdbf5def6a468017b66cd091661c0fc84202.tar.xz yuzu-861bfdbf5def6a468017b66cd091661c0fc84202.tar.zst yuzu-861bfdbf5def6a468017b66cd091661c0fc84202.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/renderer_opengl/gl_shader_cache.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/renderer_opengl/gl_shader_cache.cpp b/src/video_core/renderer_opengl/gl_shader_cache.cpp index a4265f498..d6680489b 100644 --- a/src/video_core/renderer_opengl/gl_shader_cache.cpp +++ b/src/video_core/renderer_opengl/gl_shader_cache.cpp @@ -145,7 +145,7 @@ GLuint CachedShader::LazyGeometryProgram(OGLProgram& target_program, return target_program.handle; }; -static bool IsSchedInstruction(u32 offset, u32 main_offset) { +static bool IsSchedInstruction(std::size_t offset, std::size_t main_offset) { // sched instructions appear once every 4 instructions. static constexpr std::size_t SchedPeriod = 4; const std::size_t absolute_offset = offset - main_offset; |