Commit e64a2fdf authored by Roderick Colenbrander's avatar Roderick Colenbrander Committed by Alexandre Julliard

wined3d: Set the texture size for d3d8.

parent 3ab7a987
......@@ -696,6 +696,13 @@ HRESULT WINAPI IWineD3DDeviceImpl_CreateSurface(IWineD3DDevice *iface, UINT Wid
}
}
/* D3D8 doesn't use the opengl capability code from WineD3D and because of this the maximum texture size isn't set. */
if (((IWineD3DImpl *)This->wineD3D)->dxVersion == 8 && GL_LIMITS(texture_size) == 0) {
int gl_max;
glGetIntegerv(GL_MAX_TEXTURE_SIZE, &gl_max);
GL_LIMITS(texture_size) = gl_max;
}
/** Check against the maximum texture sizes supported by the video card **/
if (pow2Width > GL_LIMITS(texture_size) || pow2Height > GL_LIMITS(texture_size)) {
/* one of three options
......
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