mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-08 05:51:21 +00:00
6c13494fca
git-svn-id: https://svn.eduke32.com/eduke32@5688 1a8010ca-5511-0410-912e-c29ae57300e0
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
|