23 #include "platform/os.hpp" 24 #include "platform/platform.hpp" 28 #define STB_IMAGE_STATIC 29 #define STB_IMAGE_IMPLEMENTATION 30 #include <stb/stb_image.h> 37 VkShaderModule loadShaderModule(VkDevice device,
const char *pPath)
39 vector<uint32_t> buffer;
40 if (FAILED(OS::getAssetManager().readBinaryFile(&buffer, pPath)))
42 LOGE(
"Failed to read SPIR-V file: %s.\n", pPath);
43 return VK_NULL_HANDLE;
46 VkShaderModuleCreateInfo moduleInfo = { VK_STRUCTURE_TYPE_SHADER_MODULE_CREATE_INFO };
47 moduleInfo.codeSize = buffer.size() *
sizeof(uint32_t);
48 moduleInfo.pCode = buffer.data();
50 VkShaderModule shaderModule;
51 VK_CHECK(vkCreateShaderModule(device, &moduleInfo,
nullptr, &shaderModule));
55 Result loadRgba8888TextureFromAsset(
const char *pPath, vector<uint8_t> *pBuffer,
unsigned *pWidth,
unsigned *pHeight)
57 vector<uint8_t> compressed;
58 if (FAILED(OS::getAssetManager().readBinaryFile(&compressed, pPath)))
60 LOGE(
"Failed to read texture: %s.\n", pPath);
61 return RESULT_ERROR_IO;
66 uint8_t *pResult = stbi_load_from_memory(compressed.data(), compressed.size(), &x, &y, &comp, STBI_rgb_alpha);
67 if (!pResult || comp != STBI_rgb_alpha)
69 LOGE(
"Failed to decompress texture: %s.\n", pPath);
71 return RESULT_ERROR_GENERIC;
75 pBuffer->insert(end(*pBuffer), pResult, pResult + x * y * 4);
80 return RESULT_SUCCESS;
101 static_assert(
sizeof(
ASTCHeader) == 16,
"Packed ASTC header struct is not 16 bytes.");
103 #define ASTC_MAGIC 0x5CA1AB13 105 Result loadASTCTextureFromAsset(
const char *pPath, vector<uint8_t> *pBuffer,
unsigned *pWidth,
unsigned *pHeight,
108 vector<uint8_t> compressed;
109 if (FAILED(OS::getAssetManager().readBinaryFile(&compressed, pPath)))
111 LOGE(
"Failed to read ASTC texture: %s.\n", pPath);
112 return RESULT_ERROR_IO;
116 return RESULT_ERROR_GENERIC;
119 memcpy(&header, compressed.data(),
sizeof(
ASTCHeader));
120 uint32_t magic = header.
magic[0] | (uint32_t(header.
magic[1]) << 8) | (uint32_t(header.
magic[2]) << 16) |
121 (uint32_t(header.
magic[3]) << 24);
123 if (magic != ASTC_MAGIC)
125 LOGE(
"Texture %s is not ASTC.\n", pPath);
126 return RESULT_ERROR_GENERIC;
131 LOGE(
"ASTC 3D textures not supported yet in Vulkan.\n");
132 return RESULT_ERROR_GENERIC;
136 *pFormat = VK_FORMAT_ASTC_4x4_UNORM_BLOCK;
138 *pFormat = VK_FORMAT_ASTC_5x4_UNORM_BLOCK;
140 *pFormat = VK_FORMAT_ASTC_6x5_UNORM_BLOCK;
142 *pFormat = VK_FORMAT_ASTC_6x6_UNORM_BLOCK;
144 *pFormat = VK_FORMAT_ASTC_8x5_UNORM_BLOCK;
146 *pFormat = VK_FORMAT_ASTC_8x6_UNORM_BLOCK;
148 *pFormat = VK_FORMAT_ASTC_8x8_UNORM_BLOCK;
150 *pFormat = VK_FORMAT_ASTC_10x5_UNORM_BLOCK;
152 *pFormat = VK_FORMAT_ASTC_10x6_UNORM_BLOCK;
154 *pFormat = VK_FORMAT_ASTC_10x8_UNORM_BLOCK;
156 *pFormat = VK_FORMAT_ASTC_10x10_UNORM_BLOCK;
158 *pFormat = VK_FORMAT_ASTC_12x10_UNORM_BLOCK;
160 *pFormat = VK_FORMAT_ASTC_12x12_UNORM_BLOCK;
164 return RESULT_ERROR_GENERIC;
168 pBuffer->insert(end(*pBuffer), begin(compressed) +
sizeof(
ASTCHeader), end(compressed));
169 *pWidth = header.
xsize[0] | (header.
xsize[1] << 8) | (header.
xsize[2] << 16);
170 *pHeight = header.
ysize[0] | (header.
ysize[1] << 8) | (header.
ysize[2] << 16);
171 return RESULT_SUCCESS;