summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-12-10 09:16:20 -0700
committerBrian Paul <brianp@vmware.com>2009-12-10 09:16:39 -0700
commit289eab5389c0f0f3f85f872b2ba440f5e8416a50 (patch)
treec2ad722966f059f5d2f921767a4d8d5a11383587
parentcc020425e929110613ddb405d3e82313d27a35ed (diff)
glsl/sl: fix _parse_boolconstant()
Need to emit the radix before the digits. This fixes several glean/glgl1 regressions.
-rw-r--r--src/glsl/cl/sl_cl_parse.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/glsl/cl/sl_cl_parse.c b/src/glsl/cl/sl_cl_parse.c
index 81e30a8c28c..a9db65c7ad7 100644
--- a/src/glsl/cl/sl_cl_parse.c
+++ b/src/glsl/cl/sl_cl_parse.c
@@ -1821,6 +1821,7 @@ _parse_boolconstant(struct parse_context *ctx,
{
if (_parse_id(ctx, ctx->dict._false, ps) == 0) {
_emit(ctx, &ps->out, OP_PUSH_BOOL);
+ _emit(ctx, &ps->out, 2); /* radix */
_emit(ctx, &ps->out, '0');
_emit(ctx, &ps->out, '\0');
return 0;
@@ -1828,6 +1829,7 @@ _parse_boolconstant(struct parse_context *ctx,
if (_parse_id(ctx, ctx->dict._true, ps) == 0) {
_emit(ctx, &ps->out, OP_PUSH_BOOL);
+ _emit(ctx, &ps->out, 2); /* radix */
_emit(ctx, &ps->out, '1');
_emit(ctx, &ps->out, '\0');
return 0;