/external/skqp/gm/ |
D | wacky_yuv_formats.cpp | 304 *planes->fYFull.getAddr8(x, y) = yuva[0]; in extract_planes() 305 *planes->fUFull.getAddr8(x, y) = yuva[1]; in extract_planes() 306 *planes->fVFull.getAddr8(x, y) = yuva[2]; in extract_planes() 307 *planes->fAFull.getAddr8(x, y) = yuva[3]; in extract_planes() 315 uAccum += *planes->fUFull.getAddr8(2*x, 2*y); in extract_planes() 316 uAccum += *planes->fUFull.getAddr8(2*x+1, 2*y); in extract_planes() 317 uAccum += *planes->fUFull.getAddr8(2*x, 2*y+1); in extract_planes() 318 uAccum += *planes->fUFull.getAddr8(2*x+1, 2*y+1); in extract_planes() 320 *planes->fUQuarter.getAddr8(x, y) = uAccum / 4.0f; in extract_planes() 322 vAccum += *planes->fVFull.getAddr8(2*x, 2*y); in extract_planes() [all …]
|
D | alpha_image.cpp | 21 *bm.getAddr8(x, y) = 0xFF; in make_alpha_image()
|
D | overdrawcolorfilter.cpp | 15 uint8_t* addr = bitmap->getAddr8(x, y); in set_bitmap()
|
D | mipmap.cpp | 110 *bm.getAddr8(x, y) = static_cast<uint8_t>(255.0f * ((x + y) / (2.0f * (N - 1)))); in make_g8_gradient()
|
/external/skia/gm/ |
D | wacky_yuv_formats.cpp | 309 *planes->fYFull.getAddr8(x, y) = yuva[0]; in extract_planes() 310 *planes->fUFull.getAddr8(x, y) = yuva[1]; in extract_planes() 311 *planes->fVFull.getAddr8(x, y) = yuva[2]; in extract_planes() 312 *planes->fAFull.getAddr8(x, y) = yuva[3]; in extract_planes() 320 uAccum += *planes->fUFull.getAddr8(2*x, 2*y); in extract_planes() 321 uAccum += *planes->fUFull.getAddr8(2*x+1, 2*y); in extract_planes() 322 uAccum += *planes->fUFull.getAddr8(2*x, 2*y+1); in extract_planes() 323 uAccum += *planes->fUFull.getAddr8(2*x+1, 2*y+1); in extract_planes() 325 *planes->fUQuarter.getAddr8(x, y) = uAccum / 4.0f; in extract_planes() 327 vAccum += *planes->fVFull.getAddr8(2*x, 2*y); in extract_planes() [all …]
|
D | alpha_image.cpp | 21 *bm.getAddr8(x, y) = 0xFF; in make_alpha_image()
|
D | overdrawcolorfilter.cpp | 15 uint8_t* addr = bitmap->getAddr8(x, y); in set_bitmap()
|
D | mipmap.cpp | 110 *bm.getAddr8(x, y) = static_cast<uint8_t>(255.0f * ((x + y) / (2.0f * (N - 1)))); in make_g8_gradient()
|
D | all_bitmap_configs.cpp | 54 memcpy(bm.getAddr8(0, y), &spectrum[y], 128); in make_bitmap()
|
/external/skqp/src/effects/ |
D | SkTableColorFilter.cpp | 213 uint8_t* bitmapPixels = bmp->getAddr8(0, 0); in asComponentTable() 275 combine_tables(concatA, tableA, innerBM.getAddr8(0, 0)); in onMakeComposed() 276 combine_tables(concatR, tableR, innerBM.getAddr8(0, 1)); in onMakeComposed() 277 combine_tables(concatG, tableG, innerBM.getAddr8(0, 2)); in onMakeComposed() 278 combine_tables(concatB, tableB, innerBM.getAddr8(0, 3)); in onMakeComposed()
|
/external/skia/src/effects/ |
D | SkTableColorFilter.cpp | 213 uint8_t* bitmapPixels = bmp->getAddr8(0, 0); in asComponentTable() 275 combine_tables(concatA, tableA, innerBM.getAddr8(0, 0)); in onMakeComposed() 276 combine_tables(concatR, tableR, innerBM.getAddr8(0, 1)); in onMakeComposed() 277 combine_tables(concatG, tableG, innerBM.getAddr8(0, 2)); in onMakeComposed() 278 combine_tables(concatB, tableB, innerBM.getAddr8(0, 3)); in onMakeComposed()
|
/external/skqp/src/core/ |
D | SkMaskFilter.cpp | 71 SkDebugf("%02X", *mask.getAddr8(x, y)); 152 alpha[0] = *mask.getAddr8(cx, mask.fBounds.top() + y); in draw_nine_clipped() 165 alpha[0] = *mask.getAddr8(cx, mask.fBounds.bottom() - y - 1); in draw_nine_clipped() 173 m.fImage = mask.getAddr8(mask.fBounds.left() + r.left() - outerR.left(), in draw_nine_clipped() 184 m.fImage = mask.getAddr8(mask.fBounds.right() - outerR.right() + r.left(), in draw_nine_clipped()
|
D | SkBlitter_A8.cpp | 81 const uint8_t* src = mask.getAddr8(x, y); in blitMask()
|
D | SkMask.h | 74 uint8_t* getAddr8(int x, int y) const { in getAddr8() function
|
/external/skia/src/core/ |
D | SkMaskFilter.cpp | 71 SkDebugf("%02X", *mask.getAddr8(x, y)); 152 alpha[0] = *mask.getAddr8(cx, mask.fBounds.top() + y); in draw_nine_clipped() 165 alpha[0] = *mask.getAddr8(cx, mask.fBounds.bottom() - y - 1); in draw_nine_clipped() 173 m.fImage = mask.getAddr8(mask.fBounds.left() + r.left() - outerR.left(), in draw_nine_clipped() 184 m.fImage = mask.getAddr8(mask.fBounds.right() - outerR.right() + r.left(), in draw_nine_clipped()
|
D | SkBlitter_A8.cpp | 81 const uint8_t* src = mask.getAddr8(x, y); in blitMask()
|
D | SkMask.h | 74 uint8_t* getAddr8(int x, int y) const { in getAddr8() function
|
/external/skia/include/core/ |
D | SkBitmap.h | 891 inline uint8_t* getAddr8(int x, int y) const; 1172 inline uint8_t* SkBitmap::getAddr8(int x, int y) const { in getAddr8() function
|
/external/skqp/include/core/ |
D | SkBitmap.h | 909 inline uint8_t* getAddr8(int x, int y) const; 1190 inline uint8_t* SkBitmap::getAddr8(int x, int y) const { in getAddr8() function
|
/external/skia/src/gpu/effects/ |
D | GrCircleBlurFragmentProcessor.cpp | 217 create_half_plane_profile(bm.getAddr8(0, 0), kProfileTextureWidth); in create_profile_texture() 221 create_circle_profile(bm.getAddr8(0, 0), sigma * scale, circleR * scale, in create_profile_texture()
|
D | GrRectBlurEffect.h | 43 SkBlurMask::ComputeBlurProfile(bitmap.getAddr8(0, 0), profileSize, sigma); in CreateBlurProfileTexture()
|
D | GrCircleBlurFragmentProcessor.fp | 240 create_half_plane_profile(bm.getAddr8(0, 0), kProfileTextureWidth); 244 create_circle_profile(bm.getAddr8(0, 0), sigma * scale, circleR * scale,
|
/external/skqp/src/gpu/effects/ |
D | GrCircleBlurFragmentProcessor.cpp | 217 create_half_plane_profile(bm.getAddr8(0, 0), kProfileTextureWidth); in create_profile_texture() 221 create_circle_profile(bm.getAddr8(0, 0), sigma * scale, circleR * scale, in create_profile_texture()
|
D | GrRectBlurEffect.h | 42 SkBlurMask::ComputeBlurProfile(bitmap.getAddr8(0, 0), profileSize, sigma); in CreateBlurProfileTexture()
|
D | GrCircleBlurFragmentProcessor.fp | 240 create_half_plane_profile(bm.getAddr8(0, 0), kProfileTextureWidth); 244 create_circle_profile(bm.getAddr8(0, 0), sigma * scale, circleR * scale,
|