blob: a32e537bf5f24f3b86ec1e9b0e985543d29d2758 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// TODO: Flesh me out
// The blend mode used in SDL_RenderCopy() and drawing operations.
export type blend_mode = enum {
NONE = 0x00000000,
BLEND = 0x00000001,
ADD = 0x00000002,
MOD = 0x00000004,
MUL = 0x00000008,
INVALID = 0x7FFFFFFF
};
|