view src/hermes/common.inc @ 2150:abbe2c1dcf0a

Fixed bug #77 If the ARB pixel format selection fails, use a version of ChoosePixelFormat() that doesn't return a less capable format than was requested.
author Sam Lantinga <slouken@libsdl.org>
date Thu, 05 Jul 2007 06:14:26 +0000
parents d76c3909b244
children
line wrap: on
line source

; Some common macros for hermes nasm code

%macro SDL_FUNC 1
%ifdef HIDDEN_VISIBILITY
GLOBAL %1:function hidden
%else
GLOBAL %1
%endif
%endmacro