Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(596)

Side by Side Diff: include/core/SkMipMap.h

Issue 1249543003: Creating functions for uploading a mipmapped texture. (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright 2013 Google Inc. 2 * Copyright 2013 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef SkMipMap_DEFINED 8 #ifndef SkMipMap_DEFINED
9 #define SkMipMap_DEFINED 9 #define SkMipMap_DEFINED
10 10
(...skipping 10 matching lines...) Expand all
21 static SkMipMap* Build(const SkBitmap& src, SkDiscardableFactoryProc); 21 static SkMipMap* Build(const SkBitmap& src, SkDiscardableFactoryProc);
22 22
23 struct Level { 23 struct Level {
24 void* fPixels; 24 void* fPixels;
25 uint32_t fRowBytes; 25 uint32_t fRowBytes;
26 uint32_t fWidth, fHeight; 26 uint32_t fWidth, fHeight;
27 float fScale; // < 1.0 27 float fScale; // < 1.0
28 }; 28 };
29 29
30 bool extractLevel(SkScalar scale, Level*) const; 30 bool extractLevel(SkScalar scale, Level*) const;
31 int getLevelsCount() const;
32 bool getLevel(int levelIndex, Level* levelPtr) const;
31 33
32 protected: 34 protected:
33 void onDataChange(void* oldData, void* newData) override { 35 void onDataChange(void* oldData, void* newData) override {
34 fLevels = (Level*)newData; // could be NULL 36 fLevels = (Level*)newData; // could be NULL
35 } 37 }
36 38
37 private: 39 private:
38 Level* fLevels; 40 Level* fLevels;
39 int fCount; 41 int fCount;
40 42
41 // we take ownership of levels, and will free it with sk_free() 43 // we take ownership of levels, and will free it with sk_free()
42 SkMipMap(void* malloc, size_t size) : INHERITED(malloc, size) {} 44 SkMipMap(void* malloc, size_t size) : INHERITED(malloc, size) {}
43 SkMipMap(size_t size, SkDiscardableMemory* dm) : INHERITED(size, dm) {} 45 SkMipMap(size_t size, SkDiscardableMemory* dm) : INHERITED(size, dm) {}
44 46
45 static size_t AllocLevelsSize(int levelCount, size_t pixelSize); 47 static size_t AllocLevelsSize(int levelCount, size_t pixelSize);
46 48
47 typedef SkCachedData INHERITED; 49 typedef SkCachedData INHERITED;
48 }; 50 };
49 51
50 #endif 52 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698