vkd3d-shader: Remove some TRACE messages.

This patch can be freely ignored. I have not found any of these messages to be
useful when debugging, but others may.

Signed-off-by: Zebediah Figura <zfigura@codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Matteo Bruni <mbruni@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Zebediah Figura
2021-02-12 14:38:48 -06:00
committed by Alexandre Julliard
parent 82c659539f
commit 9b1b9e222a
3 changed files with 0 additions and 41 deletions

View File

@@ -218,7 +218,6 @@ row_major {return KW_ROW_MAJOR; }
}
<pp>pragma{WS}+ {
TRACE("Got a #pragma.\n");
BEGIN(pp_pragma);
}
<pp_pragma>pack_matrix{WS}*\({WS}*row_major{WS}*\) {
@@ -243,7 +242,6 @@ row_major {return KW_ROW_MAJOR; }
}
<pp_pragma>{ANY} {}
<pp>[0-9]+ {
TRACE("Preprocessor line info.\n");
BEGIN(pp_line);
yylval->intval = (atoi(yytext));
return PRE_LINE;