summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKushal K S V S <kkushal32@gmail.com>2017-07-14 13:20:27 +0530
committerKushal K S V S <kkushal32@gmail.com>2017-07-14 13:20:27 +0530
commit717165eb443d22a803d149bd776880e363ce4c7d (patch)
treeffaff0db1c682d463444c6d171241f3d86e8ab30
parent7c6f8ded8ff0d03425d46cc92d8d5e02223e50cc (diff)
downloadfreetype2-717165eb443d22a803d149bd776880e363ce4c7d.tar.gz
Using the Add-effect functions (to be implemented)
-rw-r--r--tests/make_png/make_sprite.c20
1 files changed, 14 insertions, 6 deletions
diff --git a/tests/make_png/make_sprite.c b/tests/make_png/make_sprite.c
index 2c68e8e8d..5085e2521 100644
--- a/tests/make_png/make_sprite.c
+++ b/tests/make_png/make_sprite.c
@@ -55,6 +55,8 @@ int main(int argc, char const *argv[])
IMAGE test_png;
IMAGE after_effect_1;
IMAGE after_effect_2;
+ IMAGE combi_effect_1;
+ IMAGE combi_effect_2;
IMAGE output;
/*******************************************************************/
@@ -364,24 +366,30 @@ int main(int argc, char const *argv[])
{
Make_PNG( &base_target, &base_png, i, render_mode );
Make_PNG( &test_target, &test_png, i, render_mode );
-// Will be added
+// Will be used
// Add_effect( &base_png, &test_png, &after_effect_1, 1);
// Add_effect( &base_png, &test_png, &after_effect_2, 2);
- Stitch( &base_png, &test_png, &output);
+ Stitch( &base_png, &test_png, &combi_effect_1);
+ // Stitch( &after_effect_1, &after_effect_2, &combi_effect_2);
- Generate_PNG ( &output, output_file_name, render_mode );
+ // Stitch( &combi_effect_1, &combi_effect_2, &output);
+
+ Generate_PNG ( &combi_effect_1, output_file_name, render_mode );
}else{
Make_PNG( base_bitmap, &base_png, i, render_mode );
Make_PNG( test_bitmap, &test_png, i, render_mode );
-// Will be added
+// Will be used
// Add_effect( &base_png, &test_png, &after_effect_1, 1);
// Add_effect( &base_png, &test_png, &after_effect_2, 2);
- Stitch( &base_png, &test_png, &output);
+ Stitch( &base_png, &test_png, &combi_effect_1);
+ // Stitch( &after_effect_1, &after_effect_2, &combi_effect_2);
+
+ // Stitch( &combi_effect_1, &combi_effect_2, &output);
- Generate_PNG ( &output, output_file_name, render_mode );
+ Generate_PNG ( &combi_effect_1, output_file_name, render_mode );
}
}