Module: Mesa Branch: master Commit: 73afa31f07fe4af605088f6590edc4227652c482 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=73afa31f07fe4af605088f6590edc4227652c482
Author: Tapani Pälli <tapani.pa...@intel.com> Date: Mon Jun 29 14:39:05 2015 +0300 glsl: expose build_program_resource_list function This is required so that we can move resource list creation to happen later. Signed-off-by: Tapani Pälli <tapani.pa...@intel.com> Reviewed-by: Martin Peres <martin.pe...@linux.intel.com> --- src/glsl/linker.cpp | 2 +- src/glsl/program.h | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/glsl/linker.cpp b/src/glsl/linker.cpp index d9527d4..e0ce00c 100644 --- a/src/glsl/linker.cpp +++ b/src/glsl/linker.cpp @@ -2689,7 +2689,7 @@ add_interface_variables(struct gl_shader_program *shProg, * Builds up a list of program resources that point to existing * resource data. */ -static void +void build_program_resource_list(struct gl_context *ctx, struct gl_shader_program *shProg) { diff --git a/src/glsl/program.h b/src/glsl/program.h index f15113a..c06541a 100644 --- a/src/glsl/program.h +++ b/src/glsl/program.h @@ -40,6 +40,10 @@ extern void link_shaders(struct gl_context *ctx, struct gl_shader_program *prog); extern void +build_program_resource_list(struct gl_context *ctx, + struct gl_shader_program *shProg); + +extern void linker_error(struct gl_shader_program *prog, const char *fmt, ...) PRINTFLIKE(2, 3); _______________________________________________ mesa-commit mailing list mesa-commit@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-commit