X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fcore%2Fpixelformat.h;h=c180451403dc2af7e9f8c640a7c8384b04eb85e7;hp=65331c99901fcd5aefee7b78e1fef5727579af9e;hb=959efbf61663efd7879070ce0447e02c8a447ce0;hpb=24b24e2203c776aacd9744bb947f5cf47b03d328 diff --git a/source/core/pixelformat.h b/source/core/pixelformat.h index 65331c99..c1804514 100644 --- a/source/core/pixelformat.h +++ b/source/core/pixelformat.h @@ -9,8 +9,9 @@ namespace Msp { namespace GL { /** -Identifies the components of a pixel, without type information. The values -are bitfields laid as follows: +Identifies the components of a pixel, without type information. + +The values are bitfields laid as follows: _grs dccc │││ │ └╴Number of components @@ -20,7 +21,7 @@ _grs dccc └───────╴Grayscale flag This information is presented for internal documentation purposes only; it is -inadvisable for programs to rely on it. +inadvisable for applications to rely on it. */ enum PixelComponents { @@ -37,8 +38,9 @@ enum PixelComponents }; /** -Identifies a pixel format, with components and type. The values are bitfields -laid as follows: +Identifies a pixel format, with components and type. + +The values are bitfields laid as follows: tnfg ssss cccc cccc ││││ │ └╴Components (see PixelComponents) @@ -49,7 +51,7 @@ tnfg ssss cccc cccc └──────────────────╴sRGB flag This information is presented for internal documentation purposes only; it is -inadvisable for programs to rely on it. +inadvisable for applications to rely on it. */ enum PixelFormat { @@ -98,10 +100,9 @@ inline unsigned get_pixel_size(PixelFormat f) { return get_component_count(f)*ge void require_pixelformat(PixelFormat); -unsigned get_gl_components(PixelComponents); -unsigned get_gl_pixelformat(PixelFormat); - } // namespace GL } // namespace Msp +#include "pixelformat_backend.h" + #endif