Etterna 0.74.4
Loading...
Searching...
No Matches
RageSurfaceUtils_Palettize.h
1/* Palettize an RGBA surface. */
2
3#ifndef RAGE_SURFACE_UTILS_PALETTIZE
4#define RAGE_SURFACE_UTILS_PALETTIZE
5
6struct RageSurface;
7
9namespace RageSurfaceUtils {
10void
11Palettize(RageSurface*& pImg, int iColors = 256, bool bDither = true);
12};
13
14#endif
Utility functions for the RageSurfaces.
Definition RageSurface_Load.h:7
Definition RageSurface.h:90