我正在尝试制作Vulkan教程。 在进行纹理贴图之前一切正常。 当我运行程序时,“提示无法加载纹理图像”。
我正在写存储图像的路径 C:\ Users \ User \ Documents \ Visual Studio 2017 \ Libraries \ textures
我在Visual Studio中写过:
void createTextureImage() {
int texWidth, texHeight, texChannels;
stbi_uc* pixels = stbi_load("textures/texture.jpg", &texWidth, &texHeight, &texChannels, STBI_rgb_alpha);
VkDeviceSize imageSize = texWidth * texHeight * 4;
有人可以告诉我我在做什么错吗?