# HG changeset patch
# User sam <sam@basx.dev>
# Date 1721120258 -25200
# Node ID 8cf9a05b03eb92b5fecbaa9a9afd655f6636cdc8
# Parent  804ff842d3779382de7a617896a5812548fc7c5b
did: uncomment tests

diff -r 804ff842d377 -r 8cf9a05b03eb tests/test_rendering
Binary file tests/test_rendering has changed
diff -r 804ff842d377 -r 8cf9a05b03eb tests/test_rendering.nim
--- a/tests/test_rendering.nim	Tue Jul 16 15:56:55 2024 +0700
+++ b/tests/test_rendering.nim	Tue Jul 16 15:57:38 2024 +0700
@@ -191,10 +191,10 @@
     swapchain = InitSwapchain(renderpass = mainRenderpass).get()
 
     # tests a simple triangle with minimalistic shader and vertex format
-    # test_01_triangle(nFrames)
+    test_01_triangle(nFrames)
 
     # tests instanced triangles and quads, mixing meshes and instances
-    # test_02_triangle_quad_instanced(nFrames)
+    test_02_triangle_quad_instanced(nFrames)
 
     # tests
     test_03_global_descriptorset(nFrames)
@@ -208,7 +208,7 @@
     mainRenderpass = CreatePresentationRenderPass(samples = VK_SAMPLE_COUNT_4_BIT)
     swapchain = InitSwapchain(renderpass = mainRenderpass, samples = VK_SAMPLE_COUNT_4_BIT).get()
 
-    # test_01_triangle(nFrames)
+    test_01_triangle(99999999)
 
     checkVkResult vkDeviceWaitIdle(vulkan.device)
     vkDestroyRenderPass(vulkan.device, mainRenderpass, nil)