Module: Mesa Branch: master Commit: a46ca64562aeaa11a53baa1407226901f2ce0fd9 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=a46ca64562aeaa11a53baa1407226901f2ce0fd9
Author: José Fonseca <[email protected]> Date: Wed Apr 7 20:41:09 2010 +0100 draw: Fix MSVC build (snprintf->util_snprintf). --- src/gallium/auxiliary/draw/draw_llvm.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/gallium/auxiliary/draw/draw_llvm.c b/src/gallium/auxiliary/draw/draw_llvm.c index 4912b6a..3a4e14c 100644 --- a/src/gallium/auxiliary/draw/draw_llvm.c +++ b/src/gallium/auxiliary/draw/draw_llvm.c @@ -14,6 +14,7 @@ #include "gallivm/lp_bld_init.h" #include "util/u_cpu_detect.h" +#include "util/u_string.h" #include "tgsi/tgsi_dump.h" #include <llvm-c/Transforms/Scalar.h> @@ -99,7 +100,7 @@ create_vertex_header(struct draw_llvm *llvm, int data_elems) LLVMTypeRef vertex_header; char struct_name[24]; - snprintf(struct_name, 23, "vertex_header%d", data_elems); + util_snprintf(struct_name, 23, "vertex_header%d", data_elems); elem_types[0] = LLVMIntType(32); elem_types[1] = LLVMArrayType(LLVMFloatType(), 4); _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
