working on vulkan descriptor sets

This commit is contained in:
2025-01-26 00:35:06 +01:00
parent 14b9b28bf9
commit 6a40074c08
23 changed files with 518 additions and 114 deletions

20
Tests/Vulkan/Pipeline.c git.filemode.normal_file
View File

@@ -0,0 +1,20 @@
#include "Common.h"
#include <unity/unity.h>
#include <Pulse.h>
void TestPipelineSetup()
{
PulseBackend backend;
SetupPulse(&backend);
PulseDevice device;
SetupDevice(backend, &device);
CleanupDevice(device);
CleanupPulse(backend);
}
void TestPipeline()
{
RUN_TEST(TestPipelineSetup);
}