/external/skqp/src/core/ |
D | SkBlitter_Sprite.cpp | 18 : fSource(source) {} in SkSpriteBlitter() 79 SkASSERT(fDst.colorType() == fSource.colorType()); in blitRect() 83 const char* src = (const char*)fSource.addr(x - fLeft, y - fTop); in blitRect() 85 const size_t srcRB = fSource.rowBytes(); in blitRect() 86 const size_t bytesToCopy = width << fSource.shiftPerPixel(); in blitRect() 117 switch (fSource.colorType()) { in setup() 134 (!fSource.colorSpace() || fSource.colorSpace()->gammaCloseToSRGB())) { in setup() 137 if (fSource.colorType() == kAlpha_8_SkColorType) { in setup() 142 fSource.colorSpace(), fDst.colorSpace(), kPremul_SkAlphaType); in setup() 147 bool is_opaque = fSource.isOpaque() && fPaintColor.fA == 1.0f; in setup() [all …]
|
D | SkSpriteBlitter_ARGB32.cpp | 40 const uint32_t* SK_RESTRICT src = fSource.addr32(x - fLeft, y - fTop); in blitRect() 42 size_t srcRB = fSource.rowBytes(); in blitRect() 72 const uint32_t* SK_RESTRICT src = fSource.addr32(x - fLeft, y - fTop); in blitRect() 74 size_t srcRB = fSource.rowBytes(); in blitRect()
|
D | SkSpriteBlitter_RGB565.cpp | 44 const uint32_t* SK_RESTRICT src = fSource.addr32(x - fLeft, y - fTop); in blitRect() 46 size_t srcRB = fSource.rowBytes(); in blitRect() 132 const uint32_t* SK_RESTRICT src = fSource.addr32(x - fLeft, y - fTop); in blitRect() 134 size_t srcRB = fSource.rowBytes(); in blitRect()
|
D | SkSpriteBlitter.h | 41 const SkPixmap fSource; variable
|
/external/skia/src/core/ |
D | SkBlitter_Sprite.cpp | 18 : fSource(source) {} in SkSpriteBlitter() 79 SkASSERT(fDst.colorType() == fSource.colorType()); in blitRect() 83 const char* src = (const char*)fSource.addr(x - fLeft, y - fTop); in blitRect() 85 const size_t srcRB = fSource.rowBytes(); in blitRect() 86 const size_t bytesToCopy = width << fSource.shiftPerPixel(); in blitRect() 117 switch (fSource.colorType()) { in setup() 134 (!fSource.colorSpace() || fSource.colorSpace()->gammaCloseToSRGB())) { in setup() 137 if (fSource.colorType() == kAlpha_8_SkColorType) { in setup() 142 fSource.colorSpace(), fDst.colorSpace(), kPremul_SkAlphaType); in setup() 147 bool is_opaque = fSource.isOpaque() && fPaintColor.fA == 1.0f; in setup() [all …]
|
D | SkSpriteBlitter_ARGB32.cpp | 40 const uint32_t* SK_RESTRICT src = fSource.addr32(x - fLeft, y - fTop); in blitRect() 42 size_t srcRB = fSource.rowBytes(); in blitRect() 72 const uint32_t* SK_RESTRICT src = fSource.addr32(x - fLeft, y - fTop); in blitRect() 74 size_t srcRB = fSource.rowBytes(); in blitRect()
|
D | SkSpriteBlitter_RGB565.cpp | 44 const uint32_t* SK_RESTRICT src = fSource.addr32(x - fLeft, y - fTop); in blitRect() 46 size_t srcRB = fSource.rowBytes(); in blitRect() 132 const uint32_t* SK_RESTRICT src = fSource.addr32(x - fLeft, y - fTop); in blitRect() 134 size_t srcRB = fSource.rowBytes(); in blitRect()
|
D | SkSpriteBlitter.h | 41 const SkPixmap fSource; variable
|
/external/skqp/src/sksl/ |
D | SkSLCompiler.cpp | 1191 fSource = textPtr.get(); in convertProgram() 1208 fSource = nullptr; in convertProgram() 1219 fSource = program.fSource.get(); in toSPIRV() 1222 fSource = nullptr; in toSPIRV() 1237 fSource = program.fSource.get(); in toSPIRV() 1240 fSource = nullptr; in toSPIRV() 1256 fSource = program.fSource.get(); in toGLSL() 1259 fSource = nullptr; in toGLSL() 1281 fSource = program.fSource.get(); in toCPP() 1284 fSource = nullptr; in toCPP() [all …]
|
D | SkSLHCodeGenerator.cpp | 258 Parser parser(program.fSource->c_str(), program.fSource->length(), types, errors); in GetHeader() 265 return String(program.fSource->c_str() + header.fOffset, header.fLength); in GetHeader()
|
D | SkSLCompiler.h | 135 const String* fSource; variable
|
/external/skia/src/sksl/ |
D | SkSLCompiler.cpp | 1191 fSource = textPtr.get(); in convertProgram() 1208 fSource = nullptr; in convertProgram() 1219 fSource = program.fSource.get(); in toSPIRV() 1222 fSource = nullptr; in toSPIRV() 1237 fSource = program.fSource.get(); in toSPIRV() 1240 fSource = nullptr; in toSPIRV() 1256 fSource = program.fSource.get(); in toGLSL() 1259 fSource = nullptr; in toGLSL() 1281 fSource = program.fSource.get(); in toCPP() 1284 fSource = nullptr; in toCPP() [all …]
|
D | SkSLHCodeGenerator.cpp | 258 Parser parser(program.fSource->c_str(), program.fSource->length(), types, errors); in GetHeader() 265 return String(program.fSource->c_str() + header.fOffset, header.fLength); in GetHeader()
|
D | SkSLCompiler.h | 135 const String* fSource; variable
|
/external/skqp/src/sksl/lex/ |
D | RegexParser.cpp | 13 fSource = source; in parse() 23 if (fIndex >= fSource.size()) { in peek() 26 return fSource[fIndex]; in peek()
|
D | RegexParser.h | 82 std::string fSource; variable
|
/external/skia/src/sksl/lex/ |
D | RegexParser.cpp | 13 fSource = source; in parse() 23 if (fIndex >= fSource.size()) { in peek() 26 return fSource[fIndex]; in peek()
|
D | RegexParser.h | 82 std::string fSource; variable
|
/external/skia/src/sksl/ir/ |
D | SkSLProgram.h | 119 , fSource(std::move(source)) in Program() 127 std::unique_ptr<String> fSource; member
|
/external/skqp/src/sksl/ir/ |
D | SkSLProgram.h | 117 , fSource(std::move(source)) in Program() 125 std::unique_ptr<String> fSource; member
|
/external/dng_sdk/source/ |
D | dng_iptc.cpp | 60 , fSource () in dng_iptc() 161 if (fSource.NotEmpty ()) in IsEmpty() 588 ParseString (stream, fSource, charSet); in Parse() 946 fSource, in Spool()
|
D | dng_iptc.h | 74 dng_string fSource; variable
|
D | dng_xmp.cpp | 2071 iptc.fSource, in SyncIPTC()
|