浏览代码

LibGL: Set sampler config to dirty if modifying tex env

Jelle Raaijmakers 3 年之前
父节点
当前提交
4450aef175
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      Userland/Libraries/LibGL/SoftwareGLContext.cpp

+ 1 - 0
Userland/Libraries/LibGL/SoftwareGLContext.cpp

@@ -2128,6 +2128,7 @@ void SoftwareGLContext::gl_tex_env(GLenum target, GLenum pname, GLfloat param)
     case GL_REPLACE:
     case GL_DECAL:
         m_active_texture_unit->set_env_mode(param_enum);
+        m_sampler_config_is_dirty = true;
         break;
     default:
         // FIXME: We currently only support a subset of possible param values. Implement the rest!