vrend: in OpenGL it is allowed to have a TES shader without a TCS shader

Set the pre stage correctly when the TCS shader is missing on OpenGL and
warn about it when on OpenGL ES.

Signed-off-by: Gert Wollny <gert.wollny@collabora.com>
macos/master
Gert Wollny 6 years ago committed by Gert Wollny
parent d9a5903e7b
commit a4fcddc451
  1. 6
      src/vrend_renderer.c

@ -2907,7 +2907,13 @@ static inline void vrend_fill_shader_key(struct vrend_context *ctx,
prev_type = PIPE_SHADER_VERTEX;
break;
case PIPE_SHADER_TESS_EVAL:
if (key->tcs_present)
prev_type = PIPE_SHADER_TESS_CTRL;
else
if (!ctx->shader_cfg.use_gles)
prev_type = PIPE_SHADER_VERTEX;
else
vrend_printf("Error OpenGL ES doesn't allow a tesselation evaluation shader without a teselation control shader");
break;
case PIPE_SHADER_TESS_CTRL:
prev_type = PIPE_SHADER_VERTEX;

Loading…
Cancel
Save