mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-06 04:52:16 +00:00
417b047cf3
git-svn-id: https://svn.eduke32.com/eduke32@6056 1a8010ca-5511-0410-912e-c29ae57300e0
21 lines
320 B
C++
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
|