]> O.S.I.I.S - jp/vkvg.git/commitdiff
debug: use printf instead of LOG in svg-viewer for dbg stats
authorJean-Philippe Bruyère <jp_bruyere@hotmail.com>
Thu, 3 Mar 2022 12:40:35 +0000 (13:40 +0100)
committerJean-Philippe Bruyère <jp_bruyere@hotmail.com>
Thu, 3 Mar 2022 12:40:35 +0000 (13:40 +0100)
tests/vkvg-svg/svg-viewer.c

index 5416e05eb35521d0baf9b5c4d774f5a8a4ac373a..353430275e14763ad356c66751f85a9218bdc474 100644 (file)
@@ -129,12 +129,12 @@ void readSVG (VkEngine e) {
 #ifdef VKVG_DBG_STATS
                vkvg_debug_stats_t dbgStats = vkvg_device_get_stats (dev);
                vkvg_device_reset_stats (dev);
-               LOG("maximum point array size           = %d\n", dbgStats.sizePoints);
-               LOG("maximum path array size                    = %d\n", dbgStats.sizePathes);
-               LOG("maximum size of host vertice cache = %d\n", dbgStats.sizeVertices);
-               LOG("maximum size of host index cache   = %d\n", dbgStats.sizeIndices);
-               LOG("maximum size of vulkan vertex buffer       = %d\n", dbgStats.sizeVBO);
-               LOG("maximum size of vulkan index buffer        = %d\n", dbgStats.sizeIBO);
+               printf("maximum point array size                = %d\n", dbgStats.sizePoints);
+               printf("maximum path array size                 = %d\n", dbgStats.sizePathes);
+               printf("maximum size of host vertice cache      = %d\n", dbgStats.sizeVertices);
+               printf("maximum size of host index cache        = %d\n", dbgStats.sizeIndices);
+               printf("maximum size of vulkan vertex buffer    = %d\n", dbgStats.sizeVBO);
+               printf("maximum size of vulkan index buffer     = %d\n", dbgStats.sizeIBO);
 #endif
 
 }