switchFormat

Switch/Reverse Texture.Format.

@nogc
switchFormat
pure nothrow
(
,
bool alpha = false
)

Examples

assert(switchFormat(Texture.Format.RGB) == Texture.Format.BGR);
assert(switchFormat(Texture.Format.RGB, true) == Texture.Format.BGRA);
assert(switchFormat(Texture.Format.RGBA) == Texture.Format.BGRA);
assert(switchFormat(Texture.Format.RGBA, true) == Texture.Format.BGRA);

Meta