Begin implementation of C++ Image data methods again
This commit is contained in:
@@ -4,6 +4,7 @@
|
||||
|
||||
#include <hx/CFFI.h>
|
||||
#include <system/System.h>
|
||||
#include <stdint.h>
|
||||
|
||||
|
||||
namespace lime {
|
||||
@@ -20,16 +21,24 @@ namespace lime {
|
||||
|
||||
float GetAlphaMultiplier ();
|
||||
float GetAlphaOffset ();
|
||||
void GetAlphaTable (unsigned char* table);
|
||||
float GetBlueMultiplier ();
|
||||
float GetBlueOffset ();
|
||||
int GetColor ();
|
||||
void GetBlueTable (unsigned char* table);
|
||||
int32_t GetColor ();
|
||||
float GetGreenMultiplier ();
|
||||
float GetGreenOffset ();
|
||||
void GetGreenTable (unsigned char* table);
|
||||
float GetRedMultiplier ();
|
||||
float GetRedOffset ();
|
||||
void GetRedTable (unsigned char* table);
|
||||
|
||||
float data[20];
|
||||
|
||||
private:
|
||||
|
||||
void GetDataTable (unsigned char* table, float multiplier, float offset);
|
||||
|
||||
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user