summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenneth Graunke <[email protected]>2018-11-28 15:06:00 -0800
committerKenneth Graunke <[email protected]>2019-02-21 10:26:10 -0800
commitbdc1269eb2fc7f97ee80adfaba0adfb8a52d4656 (patch)
tree8a29cb5579e1cf043312610497d154d577f4def7 /src
parentfbf31247710e0af9dff620a1a7f18f30d515331f (diff)
iris: Fix failed to compile TCS message
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/iris/iris_program.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/iris/iris_program.c b/src/gallium/drivers/iris/iris_program.c
index 4d098f59baf..34e9bd04227 100644
--- a/src/gallium/drivers/iris/iris_program.c
+++ b/src/gallium/drivers/iris/iris_program.c
@@ -915,7 +915,7 @@ iris_compile_tcs(struct iris_context *ice,
brw_compile_tcs(compiler, &ice->dbg, mem_ctx, key, tcs_prog_data, nir,
-1, &error_str);
if (program == NULL) {
- dbg_printf("Failed to compile evaluation shader: %s\n", error_str);
+ dbg_printf("Failed to compile control shader: %s\n", error_str);
ralloc_free(mem_ctx);
return false;
}