From: Brian Paul Date: Mon, 24 Nov 2008 16:13:14 +0000 (-0700) Subject: mesa: copy precision/variant/centroid info in slang_fully_specified_type_copy() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=19111c5efc990df7f972c97f53bf6335ac43ad27;p=mesa.git mesa: copy precision/variant/centroid info in slang_fully_specified_type_copy() (cherry picked from commit 0e2f757413a68f0edb6643ea23ad8d879d077f11) --- diff --git a/src/mesa/shader/slang/slang_compile_variable.c b/src/mesa/shader/slang/slang_compile_variable.c index 37fb2eedb1f..abe9c55d799 100644 --- a/src/mesa/shader/slang/slang_compile_variable.c +++ b/src/mesa/shader/slang/slang_compile_variable.c @@ -122,6 +122,9 @@ slang_fully_specified_type_copy(slang_fully_specified_type * x, if (!slang_fully_specified_type_construct(&z)) return 0; z.qualifier = y->qualifier; + z.precision = y->precision; + z.variant = y->variant; + z.centroid = y->centroid; if (!slang_type_specifier_copy(&z.specifier, &y->specifier)) { slang_fully_specified_type_destruct(&z); return 0;