From: Keith Whitwell Date: Sun, 4 Mar 2007 21:47:05 +0000 (+0000) Subject: Propogate UsesKill information. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7ecdfb2f08c8722ecad9269ef753420a49be3dde;p=mesa.git Propogate UsesKill information. --- diff --git a/src/mesa/shader/arbprogparse.c b/src/mesa/shader/arbprogparse.c index b9ff08de5fc..c6ea5c4f973 100644 --- a/src/mesa/shader/arbprogparse.c +++ b/src/mesa/shader/arbprogparse.c @@ -4038,6 +4038,7 @@ _mesa_parse_arb_fragment_program(GLcontext* ctx, GLenum target, for (i = 0; i < MAX_TEXTURE_IMAGE_UNITS; i++) program->TexturesUsed[i] = ap.TexturesUsed[i]; program->FogOption = ap.FogOption; + program->UsesKill = ap.UsesKill; if (program->Base.Instructions) _mesa_free(program->Base.Instructions);