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

wined3d: Allow stream output with domain shaders.

parent 10ede933
......@@ -3815,13 +3815,11 @@ static HRESULT geometry_shader_init_stream_output(struct wined3d_shader *shader,
switch (shader_version.type)
{
case WINED3D_SHADER_TYPE_VERTEX:
case WINED3D_SHADER_TYPE_DOMAIN:
heap_free(shader->function);
shader->function = NULL;
shader->functionLength = 0;
break;
case WINED3D_SHADER_TYPE_DOMAIN:
FIXME("Stream output not supported for %s.\n", debug_shader_type(shader_version.type));
return E_NOTIMPL;
case WINED3D_SHADER_TYPE_GEOMETRY:
break;
default:
......
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