mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-06 04:52:16 +00:00
1cc9d13ccf
Files moved but not modified. Changes to follow in a subsequent commit. You down with CPP? git-svn-id: https://svn.eduke32.com/eduke32@6055 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
|