housekeeping

This commit is contained in:
Greg Wells
2025-07-12 15:16:42 -04:00
parent e43b731f39
commit a385f6f549
2 changed files with 0 additions and 7 deletions

View File

@@ -1,8 +1,6 @@
#include "metal_submit.h"
#include "synchronization/fence/gryphn_fence.h"
#include "stdio.h"
gnReturnCode metalSyncSubmit(gnOutputDevice device, gnSubmitSyncInfo info) {
__block gnFence fenceToSignal = info.fence;
__block atomic_int buffersLeft;

View File

@@ -4,11 +4,6 @@
#include "output_device/vulkan_output_devices.h"
#include "output_device/vulkan_physical_device.h"
VkDeviceSize min(VkDeviceSize a, VkDeviceSize b) {
if (a >= b) return a;
return b;
}
VkBufferUsageFlags vkGryphnBufferType(gnBufferType type) {
VkBufferUsageFlags usageFlags = 0;
switch (type) {