raze-gles/polymer/eduke32/source/android/etcpak/ProcessRGB.hpp
hendricks266 6c13494fca etcpak: Enforce C linkage on the ProcessRGB functions.
git-svn-id: https://svn.eduke32.com/eduke32@5688 1a8010ca-5511-0410-912e-c29ae57300e0
2016-03-28 05:16:05 +00:00

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