mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-02-05 05:10:55 +00:00
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
|