mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
999dd8248b
Loading is broken for multi-file image sets due to the way images are loaded (this needs some thought for making it effecient), but the Blender environment map loading works.
27 lines
931 B
C
27 lines
931 B
C
#ifndef __QF_Vulkan_qf_texture_h
|
|
#define __QF_Vulkan_qf_texture_h
|
|
|
|
#include "QF/image.h"
|
|
#include "QF/Vulkan/qf_vid.h"
|
|
|
|
typedef struct qfv_tex_s {
|
|
VkDeviceMemory memory;
|
|
size_t offset;
|
|
VkImage image;
|
|
VkImageView view;
|
|
} qfv_tex_t;
|
|
|
|
void Vulkan_ExpandPalette (byte *dst, const byte *src, const byte *palette,
|
|
int alpha, int count);
|
|
qfv_tex_t *Vulkan_LoadTex (struct vulkan_ctx_s *ctx, tex_t *tex, int mip,
|
|
const char *name);
|
|
qfv_tex_t *Vulkan_LoadEnvMap (struct vulkan_ctx_s *ctx, tex_t *tex,
|
|
const char *name);
|
|
qfv_tex_t *Vulkan_LoadEnvSides (struct vulkan_ctx_s *ctx, tex_t **tex,
|
|
const char *name);
|
|
VkImageView Vulkan_TexImageView (qfv_tex_t *tex) __attribute__((pure));
|
|
void Vulkan_UnloadTex (struct vulkan_ctx_s *ctx, qfv_tex_t *tex);
|
|
void Vulkan_Texture_Init (struct vulkan_ctx_s *ctx);
|
|
void Vulkan_Texture_Shutdown (struct vulkan_ctx_s *ctx);
|
|
|
|
#endif//__QF_Vulkan_qf_texture_h
|