blob: bbe75610ef6cec68200eb405074f91363c653a2d [file] [log] [blame]
robertphillips@google.com8cf81e02014-05-22 18:40:29 +00001/*
2 * Copyright 2014 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "gm.h"
tfarinabcbc1782014-06-18 14:32:48 -07009
10#include "Resources.h"
robertphillips@google.com8cf81e02014-05-22 18:40:29 +000011#include "SkCanvas.h"
krajcevski9c0e6292014-06-02 07:38:14 -070012#include "SkData.h"
reed5965c8a2015-01-07 18:04:45 -080013#include "SkImageGenerator.h"
robertphillips@google.com8cf81e02014-05-22 18:40:29 +000014#include "SkImageDecoder.h"
15#include "SkOSFile.h"
16
krajcevski2dc337c2014-06-04 09:57:47 -070017#ifndef SK_IGNORE_ETC1_SUPPORT
18
19#include "etc1.h"
20
21/**
22 * Remove the last row and column of ETC1 blocks, effectively
23 * making a texture that started as power of two into a texture
24 * that is no longer power of two...
25 */
26bool slice_etc1_data(void *data, int* width, int* height) {
27
28 // First, parse the data and get to it...
29 etc1_byte *origData = reinterpret_cast<etc1_byte *>(data);
30 if (!etc1_pkm_is_valid(origData)) {
31 return false;
32 }
33
34 int origW = etc1_pkm_get_width(origData);
35 int origH = etc1_pkm_get_height(origData);
36
37 int blockWidth = (origW + 3) >> 2;
38 int blockHeight = (origH + 3) >> 2;
39
40 // Make sure that we have blocks to trim off..
41 if (blockWidth < 2 || blockHeight < 2) {
42 return false;
43 }
44
45 int newWidth = (blockWidth - 1) << 2;
46 int newHeight = (blockHeight - 1) << 2;
47
48 size_t newDataSz = etc1_get_encoded_data_size(newWidth, newHeight) + ETC_PKM_HEADER_SIZE;
49 SkAutoMalloc am(newDataSz);
50
51 etc1_byte *newData = reinterpret_cast<etc1_byte *>(am.get());
52
53 etc1_pkm_format_header(newData, newWidth, newHeight);
54 newData += ETC_PKM_HEADER_SIZE;
55 origData += ETC_PKM_HEADER_SIZE;
56
57 for (int j = 0; j < blockHeight - 1; ++j) {
58 memcpy(newData, origData, (blockWidth - 1)*ETC1_ENCODED_BLOCK_SIZE);
59 origData += blockWidth*ETC1_ENCODED_BLOCK_SIZE;
60 newData += (blockWidth - 1)*ETC1_ENCODED_BLOCK_SIZE;
61 }
62
63 // Stick the data back whence it came
64 memcpy(data, am.get(), newDataSz);
65 *width = newWidth;
66 *height = newHeight;
67
68 return true;
69}
70#endif // SK_IGNORE_ETC1_SUPPORT
71
robertphillips@google.com8cf81e02014-05-22 18:40:29 +000072namespace skiagm {
73
74/**
krajcevski99ffe242014-06-03 13:04:35 -070075 * Test decoding an image from a PKM or KTX file and then
robertphillips@google.com8cf81e02014-05-22 18:40:29 +000076 * from compressed ETC1 data.
77 */
78class ETC1BitmapGM : public GM {
79public:
80 ETC1BitmapGM() { }
81 virtual ~ETC1BitmapGM() { }
82
83protected:
mtklein36352bf2015-03-25 18:17:31 -070084 SkString onShortName() override {
krajcevski99ffe242014-06-03 13:04:35 -070085 SkString str = SkString("etc1bitmap_");
86 str.append(this->fileExtension());
87 return str;
robertphillips@google.com8cf81e02014-05-22 18:40:29 +000088 }
89
mtklein36352bf2015-03-25 18:17:31 -070090 SkISize onISize() override {
tfarinaf5393182014-06-09 23:59:03 -070091 return SkISize::Make(128, 128);
robertphillips@google.com8cf81e02014-05-22 18:40:29 +000092 }
93
krajcevski99ffe242014-06-03 13:04:35 -070094 virtual SkString fileExtension() const = 0;
robertphillips@google.com8cf81e02014-05-22 18:40:29 +000095
mtklein36352bf2015-03-25 18:17:31 -070096 void onDraw(SkCanvas* canvas) override {
robertphillips@google.com8cf81e02014-05-22 18:40:29 +000097 SkBitmap bm;
tfarinac846f4a2014-07-01 12:35:49 -070098 SkString filename = GetResourcePath("mandrill_128.");
krajcevski99ffe242014-06-03 13:04:35 -070099 filename.append(this->fileExtension());
mtklein04cd3682014-06-03 09:04:33 -0700100 SkAutoTUnref<SkData> fileData(SkData::NewFromFileName(filename.c_str()));
halcanary96fcdcc2015-08-27 07:41:13 -0700101 if (nullptr == fileData) {
krajcevski9c0e6292014-06-02 07:38:14 -0700102 SkDebugf("Could not open the file. Did you forget to set the resourcePath?\n");
robertphillips@google.com8cf81e02014-05-22 18:40:29 +0000103 return;
104 }
krajcevski9c0e6292014-06-02 07:38:14 -0700105
reed74bd9532015-09-14 08:52:12 -0700106 SkAutoTUnref<SkImage> image(SkImage::NewFromEncoded(fileData));
107 canvas->drawImage(image, 0, 0);
robertphillips@google.com8cf81e02014-05-22 18:40:29 +0000108 }
109
110private:
111 typedef GM INHERITED;
112};
113
krajcevski99ffe242014-06-03 13:04:35 -0700114// This class specializes ETC1BitmapGM to load the mandrill_128.pkm file.
115class ETC1Bitmap_PKM_GM : public ETC1BitmapGM {
116public:
117 ETC1Bitmap_PKM_GM() : ETC1BitmapGM() { }
118 virtual ~ETC1Bitmap_PKM_GM() { }
119
120protected:
121
mtklein36352bf2015-03-25 18:17:31 -0700122 SkString fileExtension() const override { return SkString("pkm"); }
krajcevski99ffe242014-06-03 13:04:35 -0700123
124private:
125 typedef ETC1BitmapGM INHERITED;
126};
127
128// This class specializes ETC1BitmapGM to load the mandrill_128.ktx file.
129class ETC1Bitmap_KTX_GM : public ETC1BitmapGM {
130public:
131 ETC1Bitmap_KTX_GM() : ETC1BitmapGM() { }
132 virtual ~ETC1Bitmap_KTX_GM() { }
133
134protected:
135
mtklein36352bf2015-03-25 18:17:31 -0700136 SkString fileExtension() const override { return SkString("ktx"); }
krajcevski99ffe242014-06-03 13:04:35 -0700137
138private:
139 typedef ETC1BitmapGM INHERITED;
140};
141
krajcevskia50b8f02014-08-08 11:38:27 -0700142// This class specializes ETC1BitmapGM to load the mandrill_128.r11.ktx file.
143class ETC1Bitmap_R11_KTX_GM : public ETC1BitmapGM {
144public:
145 ETC1Bitmap_R11_KTX_GM() : ETC1BitmapGM() { }
146 virtual ~ETC1Bitmap_R11_KTX_GM() { }
147
148protected:
149
mtklein36352bf2015-03-25 18:17:31 -0700150 SkString fileExtension() const override { return SkString("r11.ktx"); }
krajcevskia50b8f02014-08-08 11:38:27 -0700151
152private:
153 typedef ETC1BitmapGM INHERITED;
154};
155
krajcevski2dc337c2014-06-04 09:57:47 -0700156#ifndef SK_IGNORE_ETC1_SUPPORT
157/**
158 * Test decoding an image from a PKM file and then
159 * from non-power-of-two compressed ETC1 data. First slice
160 * off a row and column of blocks in order to make it non-power
161 * of two.
162 */
163class ETC1Bitmap_NPOT_GM : public GM {
164public:
165 ETC1Bitmap_NPOT_GM() { }
166 virtual ~ETC1Bitmap_NPOT_GM() { }
167
168protected:
mtklein36352bf2015-03-25 18:17:31 -0700169 SkString onShortName() override {
krajcevski2dc337c2014-06-04 09:57:47 -0700170 return SkString("etc1bitmap_npot");
171 }
172
mtklein36352bf2015-03-25 18:17:31 -0700173 SkISize onISize() override {
tfarinaf5393182014-06-09 23:59:03 -0700174 return SkISize::Make(124, 124);
krajcevski2dc337c2014-06-04 09:57:47 -0700175 }
176
mtklein36352bf2015-03-25 18:17:31 -0700177 void onDraw(SkCanvas* canvas) override {
krajcevski2dc337c2014-06-04 09:57:47 -0700178 SkBitmap bm;
tfarinac846f4a2014-07-01 12:35:49 -0700179 SkString pkmFilename = GetResourcePath("mandrill_128.pkm");
180 SkAutoDataUnref fileData(SkData::NewFromFileName(pkmFilename.c_str()));
halcanary96fcdcc2015-08-27 07:41:13 -0700181 if (nullptr == fileData) {
krajcevski2dc337c2014-06-04 09:57:47 -0700182 SkDebugf("Could not open the file. Did you forget to set the resourcePath?\n");
183 return;
184 }
185
186 SkAutoMalloc am(fileData->size());
187 memcpy(am.get(), fileData->data(), fileData->size());
188
189 int width, height;
190 if (!slice_etc1_data(am.get(), &width, &height)) {
191 SkDebugf("ETC1 Data is poorly formatted.\n");
192 return;
193 }
194
195 SkASSERT(124 == width);
196 SkASSERT(124 == height);
197
198 size_t dataSz = etc1_get_encoded_data_size(width, height) + ETC_PKM_HEADER_SIZE;
199 SkAutoDataUnref nonPOTData(SkData::NewWithCopy(am.get(), dataSz));
200
reed74bd9532015-09-14 08:52:12 -0700201 SkAutoTUnref<SkImage> image(SkImage::NewFromEncoded(nonPOTData));
202 canvas->drawImage(image, 0, 0);
krajcevski2dc337c2014-06-04 09:57:47 -0700203 }
204
205private:
206 typedef GM INHERITED;
207};
208#endif // SK_IGNORE_ETC1_SUPPORT
209
robertphillips@google.com8cf81e02014-05-22 18:40:29 +0000210} // namespace skiagm
211
212//////////////////////////////////////////////////////////////////////////////
213
halcanary385fe4d2015-08-26 13:07:48 -0700214DEF_GM(return new skiagm::ETC1Bitmap_PKM_GM;)
215DEF_GM(return new skiagm::ETC1Bitmap_KTX_GM;)
216DEF_GM(return new skiagm::ETC1Bitmap_R11_KTX_GM;)
krajcevski2dc337c2014-06-04 09:57:47 -0700217
218#ifndef SK_IGNORE_ETC1_SUPPORT
halcanary385fe4d2015-08-26 13:07:48 -0700219DEF_GM(return new skiagm::ETC1Bitmap_NPOT_GM;)
krajcevski2dc337c2014-06-04 09:57:47 -0700220#endif // SK_IGNORE_ETC1_SUPPORT