aboutsummaryrefslogtreecommitdiff
path: root/sources/TZR_DestroyResource.c
blob: 4b9d6512c3a89ead914ea62ef958a11943222f3c (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
#include "TZR_resource.h"
#include <SDL2/SDL_mixer.h>

void
TZR_DestroyResource(TZR_Resource *res, int free_path)
{
	if (res->path != NULL && free_path)
		free(res->path);
	switch (res->type) {
	case TZR_RES_RAW:
		if (res->raw.data != NULL)
			free(res->raw.data);
		break;
	case TZR_RES_IMAGE:
		if (res->image.ptr != NULL)
			SDL_DestroyTexture(res->image.ptr);
		break;
	case TZR_RES_SOUND:
#ifdef TZR_SOLOUD
		if (res->sound.ptr != NULL)
			Wav_destroy(res->sound.ptr);
#else
		if (res->sound.ptr != NULL)
			Mix_FreeChunk(res->sound.ptr);
#endif
		break;
	default:
		TZR_Log("unknown resource type %u", res->type);
		break;
	}
}