Module: Mesa Branch: master Commit: bfc6486819505916cfe03a9348d5e9605c300007 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=bfc6486819505916cfe03a9348d5e9605c300007
Author: Ian Romanick <[email protected]> Date: Fri Apr 26 23:50:47 2019 -0700 mesa: Add missing display list support for GL_FOG_COORDINATE_SOURCE Fixes: fe5d67d95f3 ("Implement EXT_fog_coord and EXT_secondary_color.") Reviewed-by: Mathias Fröhlich <[email protected]> Cc: Brian Paul <[email protected]> --- src/mesa/main/dlist.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c index 8dcf8bd252c..eb22fcbdb31 100644 --- a/src/mesa/main/dlist.c +++ b/src/mesa/main/dlist.c @@ -2755,6 +2755,7 @@ save_Fogiv(GLenum pname, const GLint *params) case GL_FOG_START: case GL_FOG_END: case GL_FOG_INDEX: + case GL_FOG_COORDINATE_SOURCE: p[0] = (GLfloat) *params; p[1] = 0.0f; p[2] = 0.0f; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
