PrevUpHomeNext

VG colorspace

#include <eglplus/vg_colorspace.hpp>

enum class VGColorspace : EGLenum
{
	sRGB   = EGL_VG_COLORSPACE_sRGB,
	Linear = EGL_VG_COLORSPACE_LINEAR
};

template <>
Range<VGColorspace> EnumValueRange<VGColorspace>(void);

StrCRef EnumValueName(VGColorspace);

PrevUpHomeNext