[client] egl: fix cursor regression

This commit is contained in:
Geoffrey McRae 2018-12-13 02:11:37 +11:00
parent b6c8d3fae5
commit e1fa6b4057

View File

@ -338,6 +338,7 @@ void egl_cursor_render(EGL_Cursor * cursor)
{
glEnable(GL_BLEND);
egl_shader_use(cursor->shader);
glUniform4f(cursor->uMousePos, cursor->x, cursor->y, cursor->w, cursor->h);
glBlendFunc(GL_ONE,GL_ONE_MINUS_SRC_ALPHA);
egl_model_render(cursor->model);