the great code shaking party

This commit is contained in:
tth
2022-06-26 12:22:12 +02:00
parent ecd0186b28
commit 75a06cf5b4
102 changed files with 65 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
/*
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ +
+ Octree Color Quantization +
+ ------------------------- +
+ +
+ http://www.cubic.org/~submissive/sorcerer/octree.htm +
+ +
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/
#include <stdio.h>
#include "tthimage.h"
/*::------------------------------------------------------------------::*/
/*
* bon, yapluka, fokon.
*/
int
Image_octree_0(Image_Desc *src, Image_Desc *dst)
{
#if DEBUG
fprintf(stderr, "%s ( %p %p )\n", __func__, src, dst);
#endif
return FULL_NUCKED;
}
/*::------------------------------------------------------------------::*/
int
Image_octree_1(Image_Desc *src, Image_Desc *dst)
{
#if DEBUG
fprintf(stderr, "%s ( %p %p )\n", __func__, src, dst);
#endif
return FULL_NUCKED;
}
/*::------------------------------------------------------------------::*/