X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fpixelformat.h;h=2db894a78447ed0d6b7b2892f7c5e8a499509774;hp=dcbb5948f69ad87a391cc1a6f2af4a26a3f997be;hb=a4549c55a6d47129bd9e42c6a49a671b759ce6d9;hpb=8f373af3e375799dd739fe932bc697e8595756b4 diff --git a/source/pixelformat.h b/source/pixelformat.h index dcbb5948..2db894a7 100644 --- a/source/pixelformat.h +++ b/source/pixelformat.h @@ -4,13 +4,15 @@ #include #include #include "gl.h" +#include #include #include #include #include #include #include -#include +#include +#include namespace Msp { namespace GL { @@ -22,6 +24,7 @@ enum PixelFormat DEPTH_COMPONENT16 = GL_DEPTH_COMPONENT16, DEPTH_COMPONENT24 = GL_DEPTH_COMPONENT24, DEPTH_COMPONENT32 = GL_DEPTH_COMPONENT32, + DEPTH_COMPONENT32F = GL_DEPTH_COMPONENT32F, RED = GL_RED, RG = GL_RG, RGB = GL_RGB, @@ -48,6 +51,8 @@ enum PixelFormat LUMINANCE8 = GL_LUMINANCE8, LUMINANCE_ALPHA = GL_LUMINANCE_ALPHA, LUMINANCE8_ALPHA8 = GL_LUMINANCE8_ALPHA8, + + // Deprecated SLUMINANCE = GL_SLUMINANCE, SLUMINANCE8 = GL_SLUMINANCE8, SLUMINANCE_ALPHA = GL_SLUMINANCE_ALPHA, @@ -65,6 +70,7 @@ PixelFormat storage_pixelformat_from_graphics(Graphics::PixelFormat, bool = fals PixelFormat get_base_pixelformat(PixelFormat); PixelFormat get_unsized_pixelformat(PixelFormat); PixelFormat get_sized_pixelformat(PixelFormat, unsigned = 1); +PixelFormat get_default_sized_pixelformat(PixelFormat); PixelFormat get_srgb_pixelformat(PixelFormat); unsigned get_component_count(PixelFormat); unsigned get_component_size(PixelFormat);