Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/thirdparty/etcpak/ProcessDxtc.hpp
9833 views
1
#ifndef __PROCESSDXT1_HPP__
2
#define __PROCESSDXT1_HPP__
3
4
#include <stddef.h>
5
#include <stdint.h>
6
7
void CompressBc1( const uint32_t* src, uint64_t* dst, uint32_t blocks, size_t width );
8
void CompressBc1Dither( const uint32_t* src, uint64_t* dst, uint32_t blocks, size_t width );
9
void CompressBc3( const uint32_t* src, uint64_t* dst, uint32_t blocks, size_t width );
10
11
void CompressBc4( const uint32_t* src, uint64_t* dst, uint32_t blocks, size_t width );
12
void CompressBc5( const uint32_t* src, uint64_t* dst, uint32_t blocks, size_t width );
13
14
#endif
15
16