Commit 9497e89d authored by Markus Amsler's avatar Markus Amsler Committed by Alexandre Julliard

wined3d: Respect ARB_VERTEX_BUFFER_OBJECT in loadVertexData.

parent 62c6d61d
......@@ -867,7 +867,7 @@ static void loadVertexData(IWineD3DDevice *iface, WineDirect3DVertexStridedData
unsigned int textureNo = 0;
unsigned int texture_idx = 0;
IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *)iface;
GLint curVBO = -1;
GLint curVBO = GL_SUPPORT(ARB_VERTEX_BUFFER_OBJECT) ? -1 : 0;
TRACE("Using fast vertex array code\n");
/* Blend Data ---------------------------------------------- */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment