diff options
Diffstat (limited to 'src/mesa')
| -rw-r--r-- | src/mesa/vbo/vbo_exec_api.c | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/src/mesa/vbo/vbo_exec_api.c b/src/mesa/vbo/vbo_exec_api.c index 365419d44f..9df75a8406 100644 --- a/src/mesa/vbo/vbo_exec_api.c +++ b/src/mesa/vbo/vbo_exec_api.c @@ -969,7 +969,10 @@ _vbo_Materialfv(GLenum face, GLenum pname, const GLfloat *params)  void GLAPIENTRY  _vbo_Materialf(GLenum face, GLenum pname, GLfloat param)  { -   vbo_Materialfv(face, pname, ¶m); +   GLfloat p[4]; +   p[0] = param; +   p[1] = p[2] = p[3] = 0.0F; +   vbo_Materialfv(face, pname, p);  } | 
