mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 09:08:22 -05:00
13 lines
321 B
C++
13 lines
321 B
C++
#ifndef NVTT_H
|
|
#define NVTT_H
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace nvtt
|
|
{
|
|
void compressBC6H(const void* _input, uint32_t _width, uint32_t _height, uint32_t _stride, void* _output);
|
|
void compressBC7(const void* _input, uint32_t _width, uint32_t _height, uint32_t _stride, void* _output);
|
|
|
|
} // namespace nvtt
|
|
|
|
#endif // NVTT_H
|