mirror of
https://github.com/godotengine/godot.git
synced 2024-12-04 18:14:14 +00:00
12 lines
376 B
C++
12 lines
376 B
C++
|
#ifndef __PROCESSDXT1_HPP__
|
||
|
#define __PROCESSDXT1_HPP__
|
||
|
|
||
|
#include <stddef.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void CompressDxt1( const uint32_t* src, uint64_t* dst, uint32_t blocks, size_t width );
|
||
|
void CompressDxt1Dither( const uint32_t* src, uint64_t* dst, uint32_t blocks, size_t width );
|
||
|
void CompressDxt5( const uint32_t* src, uint64_t* dst, uint32_t blocks, size_t width );
|
||
|
|
||
|
#endif
|