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>2018-03-18 20:40:44 +0530
commit2f39d6791129824bc9e8c8ffce83d5603bad69c6 (patch)
treed26dc341cd50f3265696cbac7c59f01ac0e405b8
parenta30badf3a9e59489c0b6a7efa96b46e77949f3e8 (diff)
downloadfreetype2-2f39d6791129824bc9e8c8ffce83d5603bad69c6.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 );
}
}