Skip to content

Instantly share code, notes, and snippets.

@fowlmouth
Created May 6, 2015 19:58
Show Gist options
  • Save fowlmouth/51ed23f75b9c3d37e8e9 to your computer and use it in GitHub Desktop.
Save fowlmouth/51ed23f75b9c3d37e8e9 to your computer and use it in GitHub Desktop.
template mkcolor (a,b,c,d): uint32 =
uint32(SDL_FOURCC(a.int, b.int, c.int, d.int))
converter toUint32 (some:color):uint32 =
mkColor(some.r, some.g, some.b, some.a)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment