mirror of
https://github.com/zetaPRIME/libstarlight.git
synced 2025-06-26 05:32:46 +00:00
15 lines
235 B
C++
15 lines
235 B
C++
#pragma once
|
|
#include "starlight/_global.h"
|
|
|
|
namespace starlight {
|
|
namespace gfx {
|
|
enum class BlendMode {
|
|
Blend,
|
|
Mask,
|
|
Replace,
|
|
|
|
Normal = Blend
|
|
};
|
|
}
|
|
}
|