From: Matt Turner Date: Thu, 12 Mar 2015 01:14:28 +0000 (-0700) Subject: glsl: Expose built-in packing functions under GLSL 4.2. X-Git-Tag: upstream/17.1.0~20078 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8d3aa5926b73c67c7dbd4477b7177aaa00c533e5;p=platform%2Fupstream%2Fmesa.git glsl: Expose built-in packing functions under GLSL 4.2. ARB_shading_language_packing is part of GLSL 4.2, not 4.0 as I mistakenly believed. The following functions are available only with ARB_shading_language_packing, GLSL 4.2 (not GLSL 4.0), or ES 3.0: - packSnorm2x16 - unpackSnorm2x16 - packHalf2x16 - unpackHalf2x16 Reviewed-by: Carl Worth Reviewed-by: Marek Olšák --- diff --git a/src/glsl/builtin_functions.cpp b/src/glsl/builtin_functions.cpp index 84bbdc2..c607572 100644 --- a/src/glsl/builtin_functions.cpp +++ b/src/glsl/builtin_functions.cpp @@ -201,7 +201,7 @@ static bool shader_packing_or_es3(const _mesa_glsl_parse_state *state) { return state->ARB_shading_language_packing_enable || - state->is_version(400, 300); + state->is_version(420, 300); } static bool