File: ge_compressor_s3tc_bc3.hpp

package info (click to toggle)
supertuxkart 1.4%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 768,424 kB
  • sloc: cpp: 412,077; xml: 106,334; ansic: 83,792; asm: 1,558; python: 1,403; sh: 1,366; objc: 452; makefile: 333; javascript: 23; awk: 20
file content (23 lines) | stat: -rw-r--r-- 692 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef HEADER_GE_COMPRESSOR_S3TC_BC3_HPP
#define HEADER_GE_COMPRESSOR_S3TC_BC3_HPP

#include "ge_mipmap_generator.hpp"

namespace GE
{
class GECompressorS3TCBC3 : public GEMipmapGenerator
{
private:
    uint8_t* m_compressed_data;
public:
    // ------------------------------------------------------------------------
    GECompressorS3TCBC3(uint8_t* texture, unsigned channels,
                        const irr::core::dimension2d<irr::u32>& size,
                        bool normal_map);
    // ------------------------------------------------------------------------
    ~GECompressorS3TCBC3()                     { delete [] m_compressed_data; }
};   // GECompressorS3TCBC3

}

#endif