raze-gles/source/etcpak/include/ProcessRGB.h
hendricks266 417b047cf3 Bring the previous commit into effect.
git-svn-id: https://svn.eduke32.com/eduke32@6056 1a8010ca-5511-0410-912e-c29ae57300e0
2017-02-01 10:20:54 +00:00

21 lines
320 B
C++

#ifndef PROCESSRGB_H_
#define PROCESSRGB_H_
#if !defined __cplusplus || __cplusplus < 201103L
# include <stdint.h>
#else
# include <cstdint>
#endif
#ifdef __cplusplus
extern "C" {
#endif
uint64_t ProcessRGB( const uint8_t * src );
uint64_t ProcessRGB_ETC2( const uint8_t * src );
#ifdef __cplusplus
}
#endif
#endif