diff options
| author | Vlad-Stefan Harbuz <vlad@vladh.net> | 2022-02-07 13:08:52 +0100 |
|---|---|---|
| committer | Drew DeVault <sir@cmpwn.com> | 2022-02-07 18:56:08 +0100 |
| commit | 2276dc7ad067f7af7504783239103c1abd7b4433 (patch) | |
| tree | 20f2f98f4af8b2ff0efeb3b15f1a26e09702e908 /sdl2/blendmode.ha | |
| parent | correct indentation (diff) | |
| download | hare-chip8-2276dc7ad067f7af7504783239103c1abd7b4433.tar.gz | |
refactor names from e.g. sdl2::init() to sdl2::SDL_Init()
Signed-off-by: Vlad-Stefan Harbuz <vlad@vladh.net>
Diffstat (limited to 'sdl2/blendmode.ha')
| -rw-r--r-- | sdl2/blendmode.ha | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sdl2/blendmode.ha b/sdl2/blendmode.ha index 11649cf..25acab6 100644 --- a/sdl2/blendmode.ha +++ b/sdl2/blendmode.ha @@ -1,7 +1,7 @@ // TODO: Flesh me out // The blend mode used in SDL_RenderCopy() and drawing operations. -export type blend_mode = enum { +export type SDL_BlendMode = enum { NONE = 0x00000000, BLEND = 0x00000001, ADD = 0x00000002, |
