2021-11-30 21:29:18 -06:00
|
|
|
#ifndef TEXTURE_H
|
|
|
|
#define TEXTURE_H
|
|
|
|
|
2023-05-04 17:07:00 -05:00
|
|
|
#include "sokol/sokol_gfx.h"
|
2023-11-14 09:20:09 -06:00
|
|
|
#include "HandmadeMath.h"
|
2023-12-22 11:50:03 -06:00
|
|
|
#include "render.h"
|
2022-02-06 10:14:57 -06:00
|
|
|
|
|
|
|
#define TEX_SPEC 0
|
|
|
|
#define TEX_NORM 1
|
|
|
|
#define TEX_HEIGHT 2
|
|
|
|
#define TEX_DIFF 3
|
|
|
|
|
2024-01-14 10:24:31 -06:00
|
|
|
#define FILTER_NEAREST SG_FILTER_NEAREST
|
|
|
|
#define FILTER_NONE SG_FILTER_NONE
|
|
|
|
#define FILTER_LINEAR SG_FILTER_LINEAR
|
|
|
|
|
2024-03-13 03:51:44 -05:00
|
|
|
extern struct rect ST_UNIT;
|
2021-11-30 21:29:18 -06:00
|
|
|
|
2023-01-18 14:43:07 -06:00
|
|
|
/* Represents an actual texture on the GPU */
|
2024-03-13 03:51:44 -05:00
|
|
|
struct texture {
|
2024-01-14 10:24:31 -06:00
|
|
|
sg_image id; /* ID reference for the GPU memory location of the texture */
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
unsigned char *data;
|
2023-12-29 19:08:53 -06:00
|
|
|
int frames;
|
|
|
|
int *delays;
|
2021-11-30 21:29:18 -06:00
|
|
|
};
|
|
|
|
|
2024-03-13 03:51:44 -05:00
|
|
|
typedef struct texture texture;
|
|
|
|
|
2024-01-14 10:24:31 -06:00
|
|
|
typedef struct img_sampler{
|
|
|
|
int wrap_u;
|
|
|
|
int wrap_v;
|
|
|
|
int wrap_w;
|
|
|
|
int min_filter;
|
|
|
|
int mag_filter;
|
|
|
|
int mip_filter;
|
|
|
|
} img_sampler;
|
2023-12-29 19:08:53 -06:00
|
|
|
|
2024-03-13 03:51:44 -05:00
|
|
|
struct texture *texture_from_file(const char *path); // Create texture from image
|
|
|
|
struct texture *texture_fromdata(void *raw, long size);
|
2023-05-24 20:45:50 -05:00
|
|
|
|
2024-03-13 03:51:44 -05:00
|
|
|
void texture_free(texture *tex);
|
2023-12-18 17:12:05 -06:00
|
|
|
|
|
|
|
/* Hot reloads a texture, if needed */
|
2023-05-01 20:58:10 -05:00
|
|
|
void texture_sync(const char *path);
|
2021-11-30 21:29:18 -06:00
|
|
|
|
2024-03-13 03:51:44 -05:00
|
|
|
char * tex_get_path(struct texture *tex); // Get image path for texture
|
2022-08-24 12:24:21 -05:00
|
|
|
|
2023-09-24 11:26:44 -05:00
|
|
|
int gif_nframes(const char *path);
|
2023-12-29 19:08:53 -06:00
|
|
|
int *gif_delays(const char *path);
|
2023-09-24 11:26:44 -05:00
|
|
|
|
2024-03-13 03:51:44 -05:00
|
|
|
struct glrect tex_get_rect(struct texture *tex);
|
|
|
|
HMM_Vec2 tex_get_dimensions(struct texture *tex);
|
2022-12-24 13:18:06 -06:00
|
|
|
|
2024-01-02 07:55:22 -06:00
|
|
|
double perlin(double x, double y, double z);
|
|
|
|
|
2021-11-30 21:29:18 -06:00
|
|
|
#endif
|