Module: Mesa Branch: master Commit: b490ca9a387dabc6447a3e8f68a185fdd9852692 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=b490ca9a387dabc6447a3e8f68a185fdd9852692
Author: Pierre Moreau <[email protected]> Date: Sat May 6 23:47:20 2017 +0200 nv50/ir: Fail if encountering unknown shader type Signed-off-by: Pierre Moreau <[email protected]> Reviewed-by: Ilia Mirkin <[email protected]> --- src/gallium/drivers/nouveau/codegen/nv50_ir.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir.cpp index b67a1ddbd5..1f640a348a 100644 --- a/src/gallium/drivers/nouveau/codegen/nv50_ir.cpp +++ b/src/gallium/drivers/nouveau/codegen/nv50_ir.cpp @@ -1214,8 +1214,8 @@ nv50_ir_generate_code(struct nv50_ir_prog_info *info) PROG_TYPE_CASE(FRAGMENT, FRAGMENT); PROG_TYPE_CASE(COMPUTE, COMPUTE); default: - type = nv50_ir::Program::TYPE_COMPUTE; - break; + INFO_DBG(info->dbgFlags, VERBOSE, "unsupported program type %u\n", type); + return -1; } INFO_DBG(info->dbgFlags, VERBOSE, "translating program of type %u\n", type); _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
