mirror of
https://github.com/borgesdan/xn65
synced 2024-12-29 21:54:47 +01:00
19 lines
261 B
C++
19 lines
261 B
C++
#ifndef XNA_GRAPHICS_SHARED_HPP
|
|
#define XNA_GRAPHICS_SHARED_HPP
|
|
|
|
namespace xna {
|
|
enum class ComparisonFunction {
|
|
Never,
|
|
Less,
|
|
Equal,
|
|
LessEquals,
|
|
Greater,
|
|
NotEqual,
|
|
GreaterEqual,
|
|
Always
|
|
};
|
|
|
|
using CompareFunction = ComparisonFunction;
|
|
}
|
|
|
|
#endif |