Files
jdd_opendingux/source/common/destsurface.h

15 lines
182 B
C++

#pragma once
#include <SDL2/SDL.h>
namespace DestSurface
{
void init(int width, int height);
void clear(uint32_t color);
uint8_t *getPixels();
int getWidth();
}