mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-02-06 13:50:52 +00:00
17 lines
233 B
C++
17 lines
233 B
C++
#ifndef PROCESSRGB_HPP__
|
|
#define PROCESSRGB_HPP__
|
|
|
|
#include "Types.hpp"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
uint64 ProcessRGB( const uint8* src );
|
|
uint64 ProcessRGB_ETC2( const uint8* src );
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|