prosperon/source/engine/texture.h

52 lines
1.1 KiB
C
Raw Normal View History

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"
2024-03-24 12:44:35 -05: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
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 */
struct texture {
2024-04-30 10:32:27 -05:00
sg_image id; /* ID reference for the GPU memory location of the
texture */
2024-01-14 10:24:31 -06:00
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
};
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
texture *texture_from_file(const char *path);
void texture_free(texture *tex);
struct texture *texture_fromdata(void *raw, long size);
2024-06-18 16:14:23 -05:00
texture *texture_empty(int width, int height, int n);
void texture_blit(texture *dest, texture *src, int x, int y, int w, int h);
void texture_flip(texture *tex, int y);
void texture_save(texture *tex, const char *file);
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