OSDN Git Service

gallium/aux/util: use util_snprintf() in test_texture_barrier
authorAndres Gomez <agomez@igalia.com>
Wed, 1 Aug 2018 12:47:13 +0000 (15:47 +0300)
committerAndres Gomez <agomez@igalia.com>
Thu, 2 Aug 2018 07:06:44 +0000 (10:06 +0300)
commit18d9dc179f78f68e598cb21143743dbd71197c93
tree53c091d0be7aaabbf7b3e8f9d5e0d1e78d4fa3df
parent9d220fa950850d751fbbbc2cd4ec24d024fcad70
gallium/aux/util: use util_snprintf() in test_texture_barrier

Instead of plain snprintf(). To fix the MSVC 2013 build:

  Compiling src\gallium\auxiliary\util\u_tests.c ...
u_tests.c
src\gallium\auxiliary\util\u_tests.c(624) : warning C4013: 'snprintf' undefined; assuming extern returning int

...

gallium.lib(u_tests.obj) : error LNK2019: unresolved external symbol _snprintf referenced in function _test_texture_barrier
build\windows-x86-debug\gallium\targets\graw-gdi\graw.dll : fatal error LNK1120: 1 unresolved externals
scons: *** [build\windows-x86-debug\gallium\targets\graw-gdi\graw.dll] Error 1120
scons: building terminated because of errors.

Fixes: 56342c97ee7 ("gallium/u_tests: test FBFETCH and shader-based blending with MSAA")
Cc: Marek Olšák <marek.olsak@amd.com>
Cc: Brian Paul <brianp@vmware.com>
Cc: Roland Scheidegger <sroland@vmware.com>
Cc: Dieter Nützel <Dieter@nuetzel-hh.de>
Signed-off-by: Andres Gomez <agomez@igalia.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
src/gallium/auxiliary/util/u_tests.c