mirror of
https://github.com/bkaradzic/bimg.git
synced 2026-02-17 20:52:38 +01:00
10 lines
168 B
C++
10 lines
168 B
C++
#ifndef __PROCESSRGB_HPP__
|
|
#define __PROCESSRGB_HPP__
|
|
|
|
#include "Types.hpp"
|
|
|
|
uint64 ProcessRGB( const uint8* src );
|
|
uint64 ProcessRGB_ETC2( const uint8* src );
|
|
|
|
#endif
|