comparison src/hermes/x86p_32.asm @ 1697:393092a3ebf6 SDL-1.3

Fixed bug #157 [patch tweaked to handle older nasm, which doesn't support :function syntax] ------- Comment #5 From Mike Frysinger 2006-05-22 01:24 [reply] ------- Created an attachment (id=132) [edit] libsdl-hidden-nasm.patch here's the patch i posted here: http://www.libsdl.org/pipermail/sdl/2006-March/073618.html this will hide the symbols dynamically if the build nasm/yasm supports the hidden stuff ... in other words, this patch should be safe with both older and new versions of nasm/yasm
author Sam Lantinga <slouken@libsdl.org>
date Wed, 21 Jun 2006 07:57:59 +0000
parents 2d6dc7de1145
children 4ce6deb843c5
comparison
equal deleted inserted replaced
1696:3695d3637045 1697:393092a3ebf6
7 ; licensing conditions 7 ; licensing conditions
8 ; 8 ;
9 ; Most routines are (c) Glenn Fiedler (ptc@gaffer.org), used with permission 9 ; Most routines are (c) Glenn Fiedler (ptc@gaffer.org), used with permission
10 ; 10 ;
11 11
12
13 BITS 32 12 BITS 32
14 13
15 GLOBAL _ConvertX86p32_32BGR888 14 %include "common.asm"
16 GLOBAL _ConvertX86p32_32RGBA888 15
17 GLOBAL _ConvertX86p32_32BGRA888 16 SDL_FUNC _ConvertX86p32_32BGR888
18 GLOBAL _ConvertX86p32_24RGB888 17 SDL_FUNC _ConvertX86p32_32RGBA888
19 GLOBAL _ConvertX86p32_24BGR888 18 SDL_FUNC _ConvertX86p32_32BGRA888
20 GLOBAL _ConvertX86p32_16RGB565 19 SDL_FUNC _ConvertX86p32_24RGB888
21 GLOBAL _ConvertX86p32_16BGR565 20 SDL_FUNC _ConvertX86p32_24BGR888
22 GLOBAL _ConvertX86p32_16RGB555 21 SDL_FUNC _ConvertX86p32_16RGB565
23 GLOBAL _ConvertX86p32_16BGR555 22 SDL_FUNC _ConvertX86p32_16BGR565
24 GLOBAL _ConvertX86p32_8RGB332 23 SDL_FUNC _ConvertX86p32_16RGB555
24 SDL_FUNC _ConvertX86p32_16BGR555
25 SDL_FUNC _ConvertX86p32_8RGB332
25 26
26 EXTERN _x86return 27 EXTERN _x86return
27 28
28 SECTION .text 29 SECTION .text
29 30