mirror of
https://github.com/nishiowo/nishbox
synced 2025-04-21 20:24:39 +00:00
19 lines
350 B
C
19 lines
350 B
C
#ifndef __NB_TEXTURE_H__
|
|
#define __NB_TEXTURE_H__
|
|
|
|
#include <nb_pre.h>
|
|
#include <nb_macro.h>
|
|
|
|
/* Type */
|
|
#include <nb_type/texture.h>
|
|
|
|
/* NishBox */
|
|
#include <nb_type/draw.h>
|
|
|
|
/* Standard */
|
|
|
|
nb_texture_t* nb_register_texture(nb_draw_t* draw, int width, int height, unsigned char* data);
|
|
void nb_destroy_texture(nb_texture_t* texture);
|
|
|
|
#endif
|