summaryrefslogtreecommitdiffstats
path: root/video/out/vulkan/formats.h
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/vulkan/formats.h')
-rw-r--r--video/out/vulkan/formats.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/video/out/vulkan/formats.h b/video/out/vulkan/formats.h
deleted file mode 100644
index 22782a6958..0000000000
--- a/video/out/vulkan/formats.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#pragma once
-
-#include "video/out/gpu/ra.h"
-#include "common.h"
-
-struct vk_format {
- const char *name;
- VkFormat iformat; // vulkan format enum
- int components; // how many components are there
- int bytes; // how many bytes is a texel
- int bits[4]; // how many bits per component
- enum ra_ctype ctype; // format representation type
- bool fucked_order; // used for formats which are not simply rgba
-};
-
-extern const struct vk_format vk_formats[];