Browse Source

Fix trailing whitespace

pull/15/merge
raven02 7 years ago
parent
commit
b92b4bbeaf
  1. 3
      src/video_core/renderer_opengl/gl_shader_decompiler.cpp

3
src/video_core/renderer_opengl/gl_shader_decompiler.cpp

@ -2022,6 +2022,9 @@ private:
const Tegra::Shader::TextureType texture_type{instr.tlds.GetTextureType()};
const bool is_array{instr.tlds.IsArrayTexture()};
ASSERT(texture_type == Tegra::Shader::TextureType::Texture2D);
ASSERT(is_array == false);
ASSERT_MSG(!instr.tlds.UsesMiscMode(Tegra::Shader::TextureMiscMode::NODEP),
"NODEP is not implemented");
ASSERT_MSG(!instr.tlds.UsesMiscMode(Tegra::Shader::TextureMiscMode::AOFFI),

Loading…
Cancel
Save