2017-02-01 10:20:54 +00:00
|
|
|
#ifndef PROCESSRGB_H_
|
|
|
|
#define PROCESSRGB_H_
|
2016-03-28 05:15:37 +00:00
|
|
|
|
2017-02-01 10:20:54 +00:00
|
|
|
#if !defined __cplusplus || __cplusplus < 201103L
|
|
|
|
# include <stdint.h>
|
|
|
|
#else
|
|
|
|
# include <cstdint>
|
|
|
|
#endif
|
2016-03-28 05:15:37 +00:00
|
|
|
|
2016-03-28 05:16:05 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2017-02-01 10:20:54 +00:00
|
|
|
uint64_t ProcessRGB( const uint8_t * src );
|
|
|
|
uint64_t ProcessRGB_ETC2( const uint8_t * src );
|
2016-03-28 05:15:37 +00:00
|
|
|
|
2016-03-28 05:16:05 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-03-28 05:15:37 +00:00
|
|
|
#endif
|