OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:copyKey
(Results
1 - 5
of
5
) sorted by null
/external/skia/src/gpu/
GrImageIDTextureAdjuster.h
25
void makeCopyKey(const CopyParams& params, GrUniqueKey*
copyKey
) override;
27
void didCacheCopy(const GrUniqueKey&
copyKey
) override;
41
void makeCopyKey(const CopyParams& params, GrUniqueKey*
copyKey
) override;
43
void didCacheCopy(const GrUniqueKey&
copyKey
) override;
60
void makeCopyKey(const CopyParams& copyParams, GrUniqueKey*
copyKey
) override;
62
void didCacheCopy(const GrUniqueKey&
copyKey
) override;
85
void didCacheCopy(const GrUniqueKey&
copyKey
) override;
GrImageIDTextureAdjuster.cpp
26
void GrBitmapTextureAdjuster::makeCopyKey(const CopyParams& params, GrUniqueKey*
copyKey
) {
37
MakeCopyKeyFromOrigKey(baseKey, params,
copyKey
);
40
void GrBitmapTextureAdjuster::didCacheCopy(const GrUniqueKey&
copyKey
) {
41
GrInstallBitmapUniqueKeyInvalidator(
copyKey
, fBmp->pixelRef());
57
void GrImageTextureAdjuster::makeCopyKey(const CopyParams& params, GrUniqueKey*
copyKey
) {
63
MakeCopyKeyFromOrigKey(baseKey, params,
copyKey
);
66
void GrImageTextureAdjuster::didCacheCopy(const GrUniqueKey&
copyKey
) {
102
void GrBitmapTextureMaker::makeCopyKey(const CopyParams& copyParams, GrUniqueKey*
copyKey
) {
104
MakeCopyKeyFromOrigKey(fOriginalKey, copyParams,
copyKey
);
108
void GrBitmapTextureMaker::didCacheCopy(const GrUniqueKey&
copyKey
) {
[
all
...]
GrTextureParamsAdjuster.h
84
GrUniqueKey*
copyKey
) {
85
SkASSERT(!
copyKey
->isValid());
88
GrUniqueKey::Builder builder(
copyKey
, origKey, kDomain, 3);
99
* simply return without initializing the
copyKey
.
101
virtual void makeCopyKey(const CopyParams&, GrUniqueKey*
copyKey
) = 0;
108
virtual void didCacheCopy(const GrUniqueKey&
copyKey
) = 0;
GrTextureParamsAdjuster.cpp
439
GrUniqueKey
copyKey
;
440
this->makeCopyKey(copyParams, &
copyKey
);
441
if (
copyKey
.isValid()) {
442
GrTexture* result = fContext->textureProvider()->findAndRefTextureByUniqueKey(
copyKey
);
453
if (
copyKey
.isValid()) {
454
fContext->textureProvider()->assignUniqueKeyToTexture(
copyKey
, result);
455
this->didCacheCopy(
copyKey
);
GrLayerCache.h
85
const int* key, int keySize, bool
copyKey
= false)
87
, fFreeKey(
copyKey
) {
92
if (
copyKey
) {
Completed in 125 milliseconds