mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
9 lines
168 B
C++
9 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
|