aboutsummaryrefslogtreecommitdiff
path: root/sources/TZR_DrawClear.c
blob: 50639aa1e3d88b4903499cea6995c69c1aaa7d7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "TZR_render.h"
#include "TZR_globals.h"
#include "sdl_error.h"
#include <SDL2/SDL_render.h>

int
TZR_DrawClear(void)
{
	if (SDL_RenderClear(___tzr_renderer) < 0)
		return sdl_error(-1);
	return 0;
}