Commit 9f808670 authored by Roderick Colenbrander's avatar Roderick Colenbrander Committed by Alexandre Julliard

wined3d: UnlockRect regression fix.

parent d39abb76
...@@ -1211,6 +1211,7 @@ static HRESULT WINAPI IWineD3DSurfaceImpl_UnlockRect(IWineD3DSurface *iface) { ...@@ -1211,6 +1211,7 @@ static HRESULT WINAPI IWineD3DSurfaceImpl_UnlockRect(IWineD3DSurface *iface) {
switch(wined3d_settings.rendertargetlock_mode) { switch(wined3d_settings.rendertargetlock_mode) {
case RTL_READTEX: case RTL_READTEX:
case RTL_TEXTEX: case RTL_TEXTEX:
ActivateContext(myDevice, iface, CTXUSAGE_BLIT);
ENTER_GL(); ENTER_GL();
if (This->glDescription.textureName == 0) { if (This->glDescription.textureName == 0) {
glGenTextures(1, &This->glDescription.textureName); glGenTextures(1, &This->glDescription.textureName);
......
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