initial commit

This commit is contained in:
2026-02-12 00:45:31 -08:00
commit 5f168f370b
3024 changed files with 804889 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
/// @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;