diff options
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_program.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_program.c b/src/mesa/drivers/dri/i965/brw_program.c index 0ca63de0cf9..7ea08e61473 100644 --- a/src/mesa/drivers/dri/i965/brw_program.c +++ b/src/mesa/drivers/dri/i965/brw_program.c @@ -447,14 +447,9 @@ brw_report_shader_time(struct brw_context *brw) if (prog) { shader_num = prog->Name; - /* The fixed function fragment shader generates GLSL IR with a Name - * of 0, and nothing else does. - */ if (prog->Label) { shader_name = prog->Label; - } else if (shader_num == 0 && - (brw->shader_time.types[i] == ST_FS8 || - brw->shader_time.types[i] == ST_FS16)) { + } else if (shader_num == 0) { shader_name = "ff"; } else { shader_name = "glsl"; |