Commit 66aa910b authored by Józef Kucia's avatar Józef Kucia Committed by Alexandre Julliard

wined3d: Unbind image textures in context_bind_unordered_access_views().

parent 3f9fb98a
...@@ -3409,6 +3409,7 @@ static void context_bind_unordered_access_views(struct wined3d_context *context, ...@@ -3409,6 +3409,7 @@ static void context_bind_unordered_access_views(struct wined3d_context *context,
if (!(view = state->unordered_access_view[i])) if (!(view = state->unordered_access_view[i]))
{ {
WARN("No unordered access view bound at index %u.\n", i); WARN("No unordered access view bound at index %u.\n", i);
GL_EXTCALL(glBindImageTexture(i, 0, 0, GL_FALSE, 0, GL_READ_WRITE, GL_R8));
continue; continue;
} }
......
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