X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fpixelformat.h;h=2db894a78447ed0d6b7b2892f7c5e8a499509774;hb=HEAD;hp=6579700d421e8329279a2c35147c4e4c7283bb4a;hpb=a4ec5410595ddf37bfbc0e85ad87d31a9cbf94f1;p=libs%2Fgl.git diff --git a/source/pixelformat.h b/source/pixelformat.h deleted file mode 100644 index 6579700d..00000000 --- a/source/pixelformat.h +++ /dev/null @@ -1,36 +0,0 @@ -/* $Id$ - -This file is part of libmspgl -Copyright © 2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#ifndef MSP_GL_PIXELFORMAT_H_ -#define MSP_GL_PIXELFORMAT_H_ - -#include "gl.h" - -namespace Msp { -namespace GL { - -enum PixelFormat -{ - COLOR_INDEX = GL_COLOR_INDEX, - STENCIL_INDEX = GL_STENCIL_INDEX, - DEPTH_COMPONENT = GL_DEPTH_COMPONENT, - RED = GL_RED, - GREEN = GL_GREEN, - BLUE = GL_BLUE, - ALPHA = GL_ALPHA, - RGB = GL_RGB, - RGBA = GL_RGBA, - BGR = GL_BGR, - BGRA = GL_BGRA, - LUMINANCE = GL_LUMINANCE, - LUMINANCE_ALPHA = GL_LUMINANCE_ALPHA -}; - -} // namespace GL -} // namespace Msp - -#endif