summaryrefslogtreecommitdiff
path: root/src/corelib
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graeme@mastermaths.co.za>2012-03-12 19:20:51 +0200
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2012-03-12 19:20:51 +0200
commit026a2f753db8178d92adf25a8ac92779f6a61743 (patch)
treeff787f197ed70e8ccbb35ed5e3b9c9a414360760 /src/corelib
parent5f2445a4c61e43adbbf5cdce2012a482146b65fc (diff)
downloadfpGUI-026a2f753db8178d92adf25a8ac92779f6a61743.tar.xz
agg: inline the shr_xxx() functions until we replace them totally
Diffstat (limited to 'src/corelib')
-rw-r--r--src/corelib/render/software/agg_basics.pas6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/corelib/render/software/agg_basics.pas b/src/corelib/render/software/agg_basics.pas
index 5abbecd4..17833522 100644
--- a/src/corelib/render/software/agg_basics.pas
+++ b/src/corelib/render/software/agg_basics.pas
@@ -359,9 +359,9 @@ type
{ These implementations have changed to use FPC's Sar*() functions, so should
now support all platforms with ASM code. At a later date these functions
could be removed completely. }
- function shr_int8 (i ,shift : int8 ) : int8;
- function shr_int16(i ,shift : int16 ) : int16;
- function shr_int32(i ,shift : int ) : int;
+ function shr_int8 (i ,shift : int8 ) : int8; inline;
+ function shr_int16(i ,shift : int16 ) : int16; inline;
+ function shr_int32(i ,shift : int ) : int; inline;
IMPLEMENTATION
{ UNIT IMPLEMENTATION }