taisei/src/resource/texture.h
2021-08-31 23:34:46 +03:00

35 lines
1.1 KiB
C

/*
* This software is licensed under the terms of the MIT License.
* See COPYING for further information.
* ---
* Copyright (c) 2011-2019, Lukas Weber <laochailan@web.de>.
* Copyright (c) 2012-2019, Andrei Alexeyev <akari@taisei-project.org>.
*/
#pragma once
#include "taisei.h"
#include "util.h"
#include "resource.h"
typedef struct Texture Texture;
void begin_draw_texture(FloatRect dest, FloatRect frag, Texture *tex);
void end_draw_texture(void);
void fill_viewport(float xoff, float yoff, float ratio, const char *name);
void fill_viewport_p(float xoff, float yoff, float ratio, float aspect, float angle, Texture *tex);
void fill_screen(const char *name);
void fill_screen_p(Texture *tex);
void loop_tex_line_p(cmplx a, cmplx b, float w, float t, Texture *texture);
void loop_tex_line(cmplx a, cmplx b, float w, float t, const char *texture);
extern ResourceHandler texture_res_handler;
#define TEX_PATH_PREFIX "res/gfx/"
#define TEX_EXTENSION ".tex"
DEFINE_RESOURCE_GETTER(Texture, res_texture, RES_TEXTURE)
DEFINE_OPTIONAL_RESOURCE_GETTER(Texture, res_texture_optional, RES_TEXTURE)