/third_party/skia/experimental/graphite/src/geom/ |
D | IntersectionTree.cpp | 47 return (kSplitType == SplitType::kX) ? rect.left() : rect.top(); in GetLoVal() 50 return (kSplitType == SplitType::kX) ? rect.right() : rect.bot(); in GetHiVal() 148 SplitType splitType = (splittableSize.x() > splittableSize.y()) ? SplitType::kX in split() 153 if (splitType == SplitType::kX) { in split() 188 return (splitType == SplitType::kX) in split() 189 ? (Node*)arena->make<TreeNode<SplitType::kX>>(splitCoord, this, hiNode) in split() 205 static_assert(kTreeNodeSize == sizeof(TreeNode<SplitType::kX>)); in IntersectionTree()
|
D | IntersectionTree.h | 46 kX, enumerator
|
/third_party/skia/third_party/externals/dawn/src/tests/end2end/ |
D | ScissorTests.cpp | 77 constexpr uint32_t kX = 3; in TEST_P() local 86 pass.SetScissorRect(kX, kY, kW, kH); in TEST_P() 95 EXPECT_PIXEL_RGBA8_EQ(RGBA8::kZero, renderPass.color, kX - 1, kY - 1); in TEST_P() 96 EXPECT_PIXEL_RGBA8_EQ(RGBA8::kGreen, renderPass.color, kX, kY); in TEST_P() 98 EXPECT_PIXEL_RGBA8_EQ(RGBA8::kZero, renderPass.color, kX + kW, kY + kH); in TEST_P() 99 EXPECT_PIXEL_RGBA8_EQ(RGBA8::kGreen, renderPass.color, kX + kW - 1, kY + kH - 1); in TEST_P()
|
/third_party/skia/src/effects/imagefilters/ |
D | SkMorphologyImageFilter.cpp | 41 enum class MorphDirection { kX, kY }; enumerator 244 char dir = me.fDirection == MorphDirection::kX ? 'x' : 'y'; in onMakeProgramImpl() 349 MorphDirection dir = d->fRandom->nextBool() ? MorphDirection::kX : MorphDirection::kY; in TestCreate() 401 if (direction == MorphDirection::kX) { in apply_morphology_pass() 465 srcRect, dstRect, radius.fWidth, morphType, MorphDirection::kX); in apply_morphology() 508 const int srcStrideX = direction == MorphDirection::kX ? 1 : srcStride; in morph() 509 const int dstStrideX = direction == MorphDirection::kX ? 1 : dstStride; in morph() 510 const int srcStrideY = direction == MorphDirection::kX ? srcStride : 1; in morph() 511 const int dstStrideY = direction == MorphDirection::kX ? dstStride : 1; in morph() 541 const int srcStrideX = direction == MorphDirection::kX ? 1 : srcStride; [all …]
|
/third_party/skia/src/gpu/effects/ |
D | GrGaussianConvolutionFragmentProcessor.h | 20 enum class Direction { kX, kY }; enumerator 67 Direction::kX == fDirection ? "X" : "Y", fRadius); in onDumpInfo()
|
D | GrBicubicEffect.cpp | 68 const char* d = bicubicEffect.fDirection == Direction::kX ? "x" : "y"; in emitCode() 77 if (bicubicEffect.fDirection == Direction::kX) { in emitCode() 241 Direction direction = Direction::kX; in TestCreate() 244 direction = Direction::kX; in TestCreate()
|
D | GrGaussianConvolutionFragmentProcessor.cpp | 169 case Direction::kX: domain.outset(halfWidth, 0); break; in Make() 250 Direction dir = d->fRandom->nextBool() ? Direction::kY : Direction::kX; in TestCreate()
|
D | GrBicubicEffect.h | 27 kX, enumerator
|
/third_party/skia/gm/ |
D | dftext_blob_persp.cpp | 80 for (auto pm : {PerspMode::kNone, PerspMode::kX, PerspMode::kY, PerspMode::kXY}) { in onDraw() 112 enum class PerspMode { kNone, kX, kY, kXY }; enumerator 123 case PerspMode::kX: in drawBlob()
|
/third_party/skia/bench/ |
D | BlurImageFilterBench.cpp | 93 static const int kX = 0; in onDraw() local 95 const SkIRect bmpRect = SkIRect::MakeXYWH(kX, kY, fCheckerboard->width(), in onDraw() 110 canvas->drawImage(fCheckerboard, kX, kY, sampling, &paint); in onDraw()
|
/third_party/skia/modules/svg/src/ |
D | SkSVGTextPriv.h | 45 kX = 0, enumerator 57 return this->has(kX) in hasAny()
|
D | SkSVGText.cpp | 158 attrs[PosAttrs::kX] = fX[localCharIndex]; in resolve() 322 if (pos.has(PosAttrs::kX) || pos.has(PosAttrs::kY)) { in shapeFragment() 327 if (pos.has(PosAttrs::kX)) { in shapeFragment() 328 fChunkPos.fX = pos[PosAttrs::kX]; in shapeFragment()
|
D | SkSVGSVG.cpp | 50 case SkSVGAttribute::kX: in onSetAttribute()
|
/third_party/skia/modules/svg/tests/ |
D | Text.cpp | 16 const float N = SkSVGTextContext::PosAttrs()[SkSVGTextContext::PosAttrs::kX]; in DEF_TEST() 176 REPORTER_ASSERT(r, pos[SkSVGTextContext::PosAttrs::kX] == exp.fX); in DEF_TEST()
|
/third_party/skia/tools/skui/ |
D | Key.h | 48 kX, enumerator
|
/third_party/skia/modules/svg/include/ |
D | SkSVGAttribute.h | 59 kX, enumerator
|
/third_party/vk-gl-cts/external/amber/src/src/ |
D | format_data.h | 23 kX, enumerator
|
D | type_parser.cc | 141 type = FormatComponentType::kX; in ProcessChunk()
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
D | es3fPolygonOffsetTests.cpp | 133 for (int kX = kXmin; kX <= kXmax; kX++) in compareImages() local 135 const tcu::IVec4 cTest = test.getPixelInt(kX, kY); in compareImages()
|
D | es3fClippingTests.cpp | 187 for (int kX = x - radius; kX <= x + radius; kX++) in compareImages() local 189 if ((*pixelCmp)(cRef, test.getPixelInt(kX, kY))) in compareImages() 198 for (int kX = x - radius; kX <= x + radius; kX++) in compareImages() local 200 if ((*pixelCmp)(cTest, ref.getPixelInt(kX, kY))) in compareImages()
|
/third_party/vk-gl-cts/modules/gles2/functional/ |
D | es2fPolygonOffsetTests.cpp | 130 for (int kX = kXmin; kX <= kXmax; kX++) in compareImages() local 132 const tcu::IVec4 cTest = test.getPixelInt(kX, kY); in compareImages()
|
D | es2fClippingTests.cpp | 184 for (int kX = x - radius; kX <= x + radius; kX++) in compareImages() local 186 if ((*pixelCmp)(cRef, test.getPixelInt(kX, kY))) in compareImages() 195 for (int kX = x - radius; kX <= x + radius; kX++) in compareImages() local 197 if ((*pixelCmp)(cTest, ref.getPixelInt(kX, kY))) in compareImages()
|
/third_party/skia/tools/sk_app/win/ |
D | Window_win.cpp | 151 { 'X', skui::Key::kX }, in get_key()
|
/third_party/skia/tools/viewer/ |
D | ImGuiLayer.cpp | 61 io.KeyMap[ImGuiKey_X] = (int)skui::Key::kX; in ImGuiLayer()
|
/third_party/skia/tools/sk_app/unix/ |
D | Window_unix.cpp | 222 { 'x', skui::Key::kX }, in get_key()
|