blob: b4e3aa8b47ead9da65c61fb808dfbc38586f5fd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#include "util/log.h"
#include "Texture.h"
#include "SdlContext.h"
#include <SDL2/SDL_render.h>
using namespace crepe;
Texture::Texture(std::unique_ptr<api::Resource> res) {
dbg_trace();
this->load(std::move(res));
}
Texture::Texture(const char * src) {
dbg_trace();
this->load(std::make_unique<api::Resource>(src));
}
Texture::~Texture(){
dbg_trace();
if(this->m_texture){
SDL_DestroyTexture(m_texture);
}
}
void Texture::load(std::unique_ptr<api::Resource> res) {
dbg_trace();
SdlContext& ctx = SdlContext::get_instance();
m_texture = ctx.setTextureFromPath(res->canonical(), srcrect, 1, 1);
}
SDL_Texture* Texture::get_texture() const{
return m_texture;
}
SDL_Rect& Texture::get_rect() {
return srcrect;
}
|