25 lines
414 B
C
25 lines
414 B
C
/// @file eorder.h
|
|
/// Defines color channel ordering enumerations
|
|
|
|
#pragma once
|
|
|
|
#include "fl/eorder.h"
|
|
|
|
// Global aliases for backward compatibility
|
|
using EOrder = fl::EOrder;
|
|
using EOrderW = fl::EOrderW;
|
|
|
|
// Bring enum values into global scope
|
|
using fl::RGB;
|
|
using fl::RBG;
|
|
using fl::GRB;
|
|
using fl::GBR;
|
|
using fl::BRG;
|
|
using fl::BGR;
|
|
|
|
using fl::W3;
|
|
using fl::W2;
|
|
using fl::W1;
|
|
using fl::W0;
|
|
using fl::WDefault;
|