blob: 220ef2e2dc4dc405eef6fc69c6553501c2a02393 (
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
|
#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());
}
SDL_Texture* Texture::get_texture() const{
return m_texture;
}
|