aboutsummaryrefslogtreecommitdiff
path: root/graphics/scaler/hq2x_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/hq2x_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/hq2x_i386.asm')
-rw-r--r--graphics/scaler/hq2x_i386.asm10
1 files changed, 5 insertions, 5 deletions
diff --git a/graphics/scaler/hq2x_i386.asm b/graphics/scaler/hq2x_i386.asm
index 6dd97ed763..3de1095e74 100644
--- a/graphics/scaler/hq2x_i386.asm
+++ b/graphics/scaler/hq2x_i386.asm
@@ -148,7 +148,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
@@ -166,7 +166,7 @@ SECTION .text
mov %1,dx
%endmacro
-; interpolate16_3<bitFormat,5,2,1>
+; interpolate16_5_2_1
; Mix three pixels with weight 5, 2, and 1, respectively: (c1*5+c2*2+c3)/8;
%macro Interp6 3
; Unpack eax to ecx and multiply by 5
@@ -212,7 +212,7 @@ SECTION .text
mov %1, dx
%endmacro
-; interpolate16_3<bitFormat,6,1,1>
+; interpolate16_6_1_1
; Mix three pixels with weight 6, 1, and 1, respectively: (c1*6+c2+c3)/8;
%macro Interp7 3
; Unpack eax to ecx and multiply by 6
@@ -258,7 +258,7 @@ SECTION .text
mov %1, dx
%endmacro
-; interpolate16_3<bitFormat,2,3,3>
+; interpolate16_2_3_3
; Mix three pixels with weight 2, 3, and 3, respectively: (c1*2+(c2+c3)*3)/8;
%macro Interp9 3
; unpack c2
@@ -305,7 +305,7 @@ SECTION .text
mov %1, dx
%endmacro
-; interpolate16_3<bitFormat,14,1,1>
+; interpolate16_14_1_1
; Mix three pixels with weight 14, 1, and 1, respectively: (c1*14+c2+c3)/16;
%macro Interp10 3
; Unpack eax to ecx and multiply by 14