breakhack/src/texture.c

43 lines
927 B
C
Raw Normal View History

2017-11-30 21:00:47 +01:00
#include <SDL2/SDL_image.h>
#include "texture.h"
#include "util.h"
2017-12-02 23:32:40 +01:00
Texture* texture_create(const char *path, SDL_Renderer *renderer)
2017-11-30 21:00:47 +01:00
{
Texture *newTexture = NULL;
SDL_Surface *surface = IMG_Load(path);
if (surface == NULL)
{
printf("Failed to load texture (%s): %s\n", path, IMG_GetError());
}
else
{
newTexture = ec_malloc(sizeof(Texture));
newTexture->dim.height = surface->h;
newTexture->dim.width = surface->w;
newTexture->clip.x = 0;
newTexture->clip.y = 0;
newTexture->clip.h = surface->h;
newTexture->clip.w = surface->w;
newTexture->texture = SDL_CreateTextureFromSurface(renderer,
surface);
if (newTexture->texture == NULL)
{
printf("Failed to create texture (%s): %s\n",
path,
SDL_GetError());
}
SDL_FreeSurface(surface);
}
return newTexture;
}
void texture_destroy(Texture *texture)
{
SDL_DestroyTexture(texture->texture);
free(texture);
}