summaryrefslogtreecommitdiff
path: root/tests/make_png/bitmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/make_png/bitmap.h')
-rw-r--r--tests/make_png/bitmap.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/make_png/bitmap.h b/tests/make_png/bitmap.h
index 51609e85f..1d7606c13 100644
--- a/tests/make_png/bitmap.h
+++ b/tests/make_png/bitmap.h
@@ -61,14 +61,12 @@ HASH_128 * Generate_Hash_x64_128(FT_Bitmap * bitmap, HASH_128 * murmur);
PIXEL * Pixel_At (IMAGE * bitmap, int x, int y); // Returns a pointer to pixel
// at (x,y) co-ordinate
// buffer to image
-void Make_PNG(FT_Bitmap* bitmap,char* name,int i,int render_mode);
+void Make_PNG (FT_Bitmap* bitmap,IMAGE* fruit, int i,int render_mode);
// Image to file
-int Generate_PNG (IMAGE *bitmap, const char *path,int render_mode);
+int Generate_PNG (IMAGE *bitmap, const char *path,int render_mode);
// Read PNG
void Read_PNG(char *filename, IMAGE * after_effect);
// Add an effect using two PNG images
// Base Glyph = Gray {127,0,0,255}
// Differences = Red {255,0,0,255}
void Add_effect_1(IMAGE* base, IMAGE* test, IMAGE* out);
-// Stitch two PNG files side by side
-void Stitch(IMAGE* left, IMAGE* right, IMAGE* result);