mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-25 03:20:15 +00:00
12 lines
151 B
C++
12 lines
151 B
C++
|
#ifndef __TRACYDXT1_HPP__
|
||
|
#define __TRACYDXT1_HPP__
|
||
|
|
||
|
namespace tracy
|
||
|
{
|
||
|
|
||
|
void CompressImageDxt1( const char* src, char* dst, int w, int h );
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|