aboutsummaryrefslogtreecommitdiff
path: root/graphics/scaler/hq3x_i386.asm
diff options
context:
space:
mode:
authorMax Horn2009-01-27 01:29:22 +0000
committerMax Horn2009-01-27 01:29:22 +0000
commit97153f9c3b17bb603e7f51fd872b0633924d0fe1 (patch)
tree09ed27517d94418cd9119f4cf6343bb892797fa0 /graphics/scaler/hq3x_i386.asm
parent980970946854eee26b4576483c2dedc29e0177c8 (diff)
downloadscummvm-rg350-97153f9c3b17bb603e7f51fd872b0633924d0fe1.tar.gz
scummvm-rg350-97153f9c3b17bb603e7f51fd872b0633924d0fe1.tar.bz2
scummvm-rg350-97153f9c3b17bb603e7f51fd872b0633924d0fe1.zip
Removed interpolate16_2 and interpolate16_3
svn-id: r36088
Diffstat (limited to 'graphics/scaler/hq3x_i386.asm')
-rw-r--r--graphics/scaler/hq3x_i386.asm10
1 files changed, 5 insertions, 5 deletions
diff --git a/graphics/scaler/hq3x_i386.asm b/graphics/scaler/hq3x_i386.asm
index 1b470f5663..c3d1daec37 100644
--- a/graphics/scaler/hq3x_i386.asm
+++ b/graphics/scaler/hq3x_i386.asm
@@ -131,7 +131,7 @@ SECTION .text
%%fin:
%endmacro
-; interpolate16_2<bitFormat,3,1>
+; interpolate16_3_1
; Mix two pixels with weight 3 and 1, respectively: (c1*3+c2)/4;
%macro Interp1 3
mov edx,%2
@@ -147,7 +147,7 @@ SECTION .text
mov %1,dx
%endmacro
-; interpolate16_3<bitFormat,2,1,1>
+; interpolate16_2_1_1
; Mix three pixels with weight 2, 1, and 1, respectively: (c1*2+c2+c3)/4;
%macro Interp2 4
mov edx,%3
@@ -165,7 +165,7 @@ SECTION .text
mov %1,dx
%endmacro
-; interpolate16_2<bitFormat,7,1>
+; interpolate16_7_1
; Mix two pixels with weight 7 and 1, respectively: (c1*7+c2)/8;
%macro Interp3 2
; ((p1&kLowBitsMask)<<2)
@@ -204,7 +204,7 @@ SECTION .text
mov %1,dx
%endmacro
-; interpolate16_3<bitFormat,2,7,7>
+; interpolate16_2_7_7
; Mix three pixels with weight 2, 7, and 7, respectively: (c1*2+(c2+c3)*7)/16;
%macro Interp4 3
; unpack c2
@@ -251,7 +251,7 @@ SECTION .text
mov %1, dx
%endmacro
-; interpolate16_2<bitFormat,1,1>
+; interpolate16_1_1
; Mix two pixels with weight 1 and 1, respectively: (c1+c2)/2;
%macro Interp5 3
mov edx,%2