aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/utils/SkTextureCompressor_ASTC.h
blob: 1312ee9c741b3d963c2038403ff74820a0edd23d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 * Copyright 2014 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef SkTextureCompressor_ASTC_DEFINED
#define SkTextureCompressor_ASTC_DEFINED

#include "SkBitmapProcShader.h"

class SkBlitter;

namespace SkTextureCompressor {

    bool CompressA8To12x12ASTC(uint8_t* dst, const uint8_t* src,
                               int width, int height, size_t rowBytes);

    SkBlitter* CreateASTCBlitter(int width, int height, void* outputBuffer,
                                 SkTBlitterAllocator *allocator);

    void DecompressASTC(uint8_t* dst, int dstRowBytes, const uint8_t* src,
                        int width, int height, int blockDimX, int blockDimY);
}

#endif  // SkTextureCompressor_ASTC_DEFINED