]> O.S.I.I.S - jp/vkvg.git/commitdiff
tabulation
authorJean-Philippe Bruyère <jp_bruyere@hotmail.com>
Thu, 24 Feb 2022 14:22:49 +0000 (15:22 +0100)
committerJean-Philippe Bruyère <jp_bruyere@hotmail.com>
Thu, 24 Feb 2022 14:22:49 +0000 (15:22 +0100)
src/vkvg_context.c

index 8effbfd8fc8925be3e9bb0a8845cd2053ef1b897..bab639a7896f85a23ca0f94fbe3a2595a4d74681 100644 (file)
 #include "vkh_queue.h"
 
 #ifdef DEBUG
-static vec2 debugLinePoints[1000];
-static uint32_t dlpCount = 0;
-#if defined (VKVG_DBG_UTILS)
-const float DBG_LAB_COLOR_SAV[4] = {1,0,1,1};
-const float DBG_LAB_COLOR_CLIP[4] = {0,1,1,1};
-#endif
+       static vec2 debugLinePoints[1000];
+       static uint32_t dlpCount = 0;
+       #if defined (VKVG_DBG_UTILS)
+               const float DBG_LAB_COLOR_SAV[4]        = {1,0,1,1};
+               const float DBG_LAB_COLOR_CLIP[4]       = {0,1,1,1};
+       #endif
 #endif
 
 //todo:this could be used to define a default background
 static VkClearValue clearValues[3] = {
        { .color.float32 = {0,0,0,0} },
-       { .depthStencil = {1.0f, 0} },
+       { .depthStencil  = {1.0f, 0} },
        { .color.float32 = {0,0,0,0} }
 };