OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cacheTexture
(Results
1 - 4
of
4
) sorted by null
/frameworks/base/libs/hwui/
FontRenderer.cpp
152
void clearCacheTextures(Vector<
CacheTexture
*>& cacheTextures) {
187
void FontRenderer::flushLargeCaches(Vector<
CacheTexture
*>& cacheTextures) {
190
CacheTexture
*
cacheTexture
= cacheTextures[i];
191
if (
cacheTexture
->getPixelBuffer()) {
192
cacheTexture
->init();
195
it.value()->invalidateTextureCache(
cacheTexture
);
197
cacheTexture
->releaseTexture();
207
CacheTexture
* FontRenderer::cacheBitmapInTexture(Vector<
CacheTexture
*>& cacheTextures
[
all
...]
FontRenderer.h
30
#include "font/
CacheTexture
.h"
93
void flushLargeCaches(Vector<
CacheTexture
*>& cacheTextures);
147
void allocateTextureMemory(
CacheTexture
*
cacheTexture
);
148
void deallocateTextureMemory(
CacheTexture
*
cacheTexture
);
150
CacheTexture
* createCacheTexture(int width, int height, GLenum format, bool allocate);
153
CacheTexture
* cacheBitmapInTexture(Vector<
CacheTexture
*>& cacheTextures, const SkGlyph& glyph,
162
void issueDrawCommand(Vector<
CacheTexture
*>& cacheTextures)
[
all
...]
/frameworks/base/libs/hwui/font/
Font.cpp
133
void Font::invalidateTextureCache(
CacheTexture
*
cacheTexture
) {
136
if (!
cacheTexture
|| cachedGlyph->mCacheTexture ==
cacheTexture
) {
215
CacheTexture
*
cacheTexture
= glyph->mCacheTexture;
217
uint32_t cacheWidth =
cacheTexture
->getWidth();
221
PixelBuffer* pixelBuffer =
cacheTexture
->getPixelBuffer();
Font.h
118
void invalidateTextureCache(
CacheTexture
*
cacheTexture
= NULL);
Completed in 432 milliseconds