/third_party/skia/third_party/externals/angle2/src/image_util/ |
D | imageformats.h | 28 static void readColor(gl::ColorF *dst, const L8 *src); 37 static void readColor(gl::ColorF *dst, const R8 *src); 38 static void readColor(gl::ColorUI *dst, const R8 *src); 48 static void readColor(gl::ColorF *dst, const A8 *src); 58 static void readColor(gl::ColorF *dst, const L8A8 *src); 68 static void readColor(gl::ColorF *dst, const A8L8 *src); 78 static void readColor(gl::ColorF *dst, const R8G8 *src); 79 static void readColor(gl::ColorUI *dst, const R8G8 *src); 91 static void readColor(gl::ColorF *dst, const R8G8B8 *src); 92 static void readColor(gl::ColorUI *dst, const R8G8B8 *src); [all …]
|
D | imageformats.cpp | 17 void L8::readColor(gl::ColorF *dst, const L8 *src) in readColor() function in angle::L8 36 void R8::readColor(gl::ColorUI *dst, const R8 *src) in readColor() function in angle::R8 44 void R8::readColor(gl::ColorF *dst, const R8 *src) in readColor() function in angle::R8 67 void A8::readColor(gl::ColorF *dst, const A8 *src) in readColor() function in angle::A8 85 void L8A8::readColor(gl::ColorF *dst, const L8A8 *src) in readColor() function in angle::L8A8 106 void A8L8::readColor(gl::ColorF *dst, const A8L8 *src) in readColor() function in angle::A8L8 127 void R8G8::readColor(gl::ColorUI *dst, const R8G8 *src) in readColor() function in angle::R8G8 135 void R8G8::readColor(gl::ColorF *dst, const R8G8 *src) in readColor() function in angle::R8G8 161 void R8G8B8::readColor(gl::ColorUI *dst, const R8G8B8 *src) in readColor() function in angle::R8G8B8 169 void R8G8B8::readColor(gl::ColorF *dst, const R8G8B8 *src) in readColor() function in angle::R8G8B8 [all …]
|
D | copyimage.inc | 14 sourceType::readColor(reinterpret_cast<Color<colorDataType>*>(dest),
|
/third_party/flutter/skia/third_party/externals/angle2/src/image_util/ |
D | imageformats.h | 28 static void readColor(gl::ColorF *dst, const L8 *src); 37 static void readColor(gl::ColorF *dst, const R8 *src); 38 static void readColor(gl::ColorUI *dst, const R8 *src); 48 static void readColor(gl::ColorF *dst, const A8 *src); 58 static void readColor(gl::ColorF *dst, const L8A8 *src); 68 static void readColor(gl::ColorF *dst, const A8L8 *src); 78 static void readColor(gl::ColorF *dst, const R8G8 *src); 79 static void readColor(gl::ColorUI *dst, const R8G8 *src); 91 static void readColor(gl::ColorF *dst, const R8G8B8 *src); 92 static void readColor(gl::ColorUI *dst, const R8G8B8 *src); [all …]
|
D | imageformats.cpp | 17 void L8::readColor(gl::ColorF *dst, const L8 *src) in readColor() function in angle::L8 36 void R8::readColor(gl::ColorUI *dst, const R8 *src) in readColor() function in angle::R8 44 void R8::readColor(gl::ColorF *dst, const R8 *src) in readColor() function in angle::R8 67 void A8::readColor(gl::ColorF *dst, const A8 *src) in readColor() function in angle::A8 85 void L8A8::readColor(gl::ColorF *dst, const L8A8 *src) in readColor() function in angle::L8A8 106 void A8L8::readColor(gl::ColorF *dst, const A8L8 *src) in readColor() function in angle::A8L8 127 void R8G8::readColor(gl::ColorUI *dst, const R8G8 *src) in readColor() function in angle::R8G8 135 void R8G8::readColor(gl::ColorF *dst, const R8G8 *src) in readColor() function in angle::R8G8 161 void R8G8B8::readColor(gl::ColorUI *dst, const R8G8B8 *src) in readColor() function in angle::R8G8B8 169 void R8G8B8::readColor(gl::ColorF *dst, const R8G8B8 *src) in readColor() function in angle::R8G8B8 [all …]
|
D | copyimage.inc | 14 sourceType::readColor(reinterpret_cast<Color<colorDataType>*>(dest),
|
/third_party/skia/tests/ |
D | GrSurfaceTest.cpp | 227 uint32_t readColor) { in DEF_GPUTEST() argument 235 if (readColor != 0x00000000 && readColor != 0xFF000000) { in DEF_GPUTEST() 239 readColor); in DEF_GPUTEST() 243 if (readColor) { in DEF_GPUTEST() 246 readColor); in DEF_GPUTEST()
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
D | D3DTextureTest.cpp | 1286 GLuint readColor[4] = {0, 0, 0, 255}; in RunClearTest() local 1292 readColor[0] = readColor[1] = readColor[2] = 255; in RunClearTest() 1296 readColor[0] = readColor[1] = 255; in RunClearTest() 1300 readColor[0] = 255; in RunClearTest() 1305 readColor[0], readColor[1], readColor[2], readColor[3]); in RunClearTest()
|
D | SixteenBppTextureTest.cpp | 22 R5G6B5::readColor(&colorf, &rgb565); in Convert565()
|
/third_party/skia/experimental/skrive/src/ |
D | Color.cpp | 25 node->setColor(sr->readColor("color")); in parse_node()
|
D | Artboard.cpp | 99 ab->setColor (sr->readColor ("color" )); in parse_artboard()
|
/third_party/skia/experimental/skrive/src/reader/ |
D | StreamReader.cpp | 64 SkColor4f StreamReader::readColor(const char label[]) { in readColor() function in skrive::internal::StreamReader
|
D | StreamReader.h | 76 SkColor4f readColor(const char label[]);
|
/third_party/skia/experimental/skrive/tests/ |
D | BinaryReader.cpp | 58 REPORTER_ASSERT(reporter, sr->readColor("color") == (SkColor4f{0.5f,0.5f,0.5f,1})); in DEF_TEST()
|
D | JsonReader.cpp | 48 REPORTER_ASSERT(reporter, sr->readColor("color") == (SkColor4f{1,1,0,1})); in DEF_TEST()
|
/third_party/flutter/skia/src/core/ |
D | SkReadBuffer.h | 69 SkColor readColor(); 245 SkColor readColor() { return 0; } in readColor() function
|
D | SkModeColorFilter.cpp | 59 SkColor color = buffer.readColor(); in CreateProc()
|
D | SkReadBuffer.cpp | 105 SkColor SkReadBuffer::readColor() { in readColor() function in SkReadBuffer
|
/third_party/flutter/skia/src/shaders/ |
D | SkColorShader.cpp | 24 return sk_make_sp<SkColorShader>(buffer.readColor()); in CreateProc()
|
/third_party/skia/src/core/ |
D | SkModeColorFilter.cpp | 58 SkColor color = buffer.readColor(); in CreateProc()
|
D | SkReadBuffer.h | 77 SkColor readColor();
|
D | SkReadBuffer.cpp | 83 SkColor SkReadBuffer::readColor() { in readColor() function in SkReadBuffer
|
/third_party/skia/src/shaders/ |
D | SkColorShader.cpp | 25 return sk_make_sp<SkColorShader>(buffer.readColor()); in CreateProc()
|
/third_party/flutter/skia/src/effects/imagefilters/ |
D | SkDropShadowImageFilter.cpp | 78 SkColor color = buffer.readColor(); in CreateProc()
|
/third_party/skia/src/effects/imagefilters/ |
D | SkDropShadowImageFilter.cpp | 85 SkColor color = buffer.readColor(); in CreateProc()
|