Home
last modified time | relevance | path

Searched refs:SurfaceDrawContext (Results 1 – 25 of 68) sorted by relevance

123

/third_party/skia/src/gpu/v1/
DSurfaceDrawContext.cpp126 std::unique_ptr<SurfaceDrawContext> SurfaceDrawContext::Make(GrRecordingContext* rContext, in Make()
144 return std::make_unique<SurfaceDrawContext>(rContext, in Make()
153 std::unique_ptr<SurfaceDrawContext> SurfaceDrawContext::Make( in Make()
191 auto sdc = std::make_unique<SurfaceDrawContext>(rContext, in Make()
201 std::unique_ptr<SurfaceDrawContext> SurfaceDrawContext::Make( in Make()
233 return SurfaceDrawContext::Make(rContext, in Make()
241 std::unique_ptr<SurfaceDrawContext> SurfaceDrawContext::MakeWithFallback( in MakeWithFallback()
258 return SurfaceDrawContext::Make(rContext, ct, colorSpace, fit, dimensions, surfaceProps, in MakeWithFallback()
262 std::unique_ptr<SurfaceDrawContext> SurfaceDrawContext::MakeFromBackendTexture( in MakeFromBackendTexture()
279 return SurfaceDrawContext::Make(rContext, colorType, std::move(proxy), std::move(colorSpace), in MakeFromBackendTexture()
[all …]
DStencilMaskHelper.h21 class SurfaceDrawContext; variable
41 StencilMaskHelper(GrRecordingContext*, SurfaceDrawContext*);
64 SurfaceDrawContext* fSDC;
DSurfaceDrawContext_v1.h62 class SurfaceDrawContext final : public SurfaceFillContext {
64 static std::unique_ptr<SurfaceDrawContext> Make(GrRecordingContext*,
73 static std::unique_ptr<SurfaceDrawContext> Make(GrRecordingContext*,
89 static std::unique_ptr<SurfaceDrawContext> Make(GrRecordingContext*,
107 static std::unique_ptr<SurfaceDrawContext> MakeWithFallback(
121 static std::unique_ptr<SurfaceDrawContext> MakeFromBackendTexture(
131 SurfaceDrawContext(GrRecordingContext*,
139 ~SurfaceDrawContext() override;
DDevice_v1.h96 SurfaceDrawContext* surfaceDrawContext() override;
97 const SurfaceDrawContext* surfaceDrawContext() const;
182 std::unique_ptr<SurfaceDrawContext> fSurfaceDrawContext;
186 static sk_sp<BaseDevice> Make(std::unique_ptr<SurfaceDrawContext>,
190 Device(std::unique_ptr<SurfaceDrawContext>, DeviceFlags);
DPathRenderer.h31 class SurfaceDrawContext; variable
122 SurfaceDrawContext* fSurfaceDrawContext;
153 SurfaceDrawContext* fSurfaceDrawContext;
DStencilMaskHelper.cpp279 void draw_stencil_rect(skgpu::v1::SurfaceDrawContext* sdc, in draw_stencil_rect()
290 skgpu::v1::SurfaceDrawContext* sdc, in draw_path()
318 skgpu::v1::SurfaceDrawContext* sdc, in stencil_path()
336 GrAA supported_aa(skgpu::v1::SurfaceDrawContext* sdc, GrAA aa) { in supported_aa()
345 SurfaceDrawContext* sdc) in StencilMaskHelper()
/third_party/skia/src/gpu/
DGrDrawOpTest.h20 namespace skgpu { namespace v1 { class SurfaceDrawContext; }} variable
25 void GrDrawRandomOp(SkRandom*, skgpu::v1::SurfaceDrawContext*, GrPaint&&);
32 skgpu::v1::SurfaceDrawContext* sdc, \
38 skgpu::v1::SurfaceDrawContext*, \
DGrBlurUtils.h26 namespace skgpu { namespace v1 { class SurfaceDrawContext; }} variable
36 skgpu::v1::SurfaceDrawContext*,
47 skgpu::v1::SurfaceDrawContext*,
DGrBlurUtils.cpp45 static bool draw_mask(skgpu::v1::SurfaceDrawContext* sdc, in draw_mask()
188 static std::unique_ptr<skgpu::v1::SurfaceDrawContext> create_mask_GPU( in create_mask_GPU()
208 auto sdc = skgpu::v1::SurfaceDrawContext::MakeWithFallback(rContext, in create_mask_GPU()
265 static bool get_shape_and_clip_bounds(skgpu::v1::SurfaceDrawContext* sdc, in get_shape_and_clip_bounds()
371 skgpu::v1::SurfaceDrawContext* sdc, in hw_create_filtered_mask()
420 std::unique_ptr<skgpu::v1::SurfaceDrawContext> maskSDC(create_mask_GPU(dContext, in hw_create_filtered_mask()
465 skgpu::v1::SurfaceDrawContext* sdc, in draw_shape_with_mask_filter()
555 skgpu::v1::SurfaceDrawContext* sdc, in drawShapeWithMaskFilter()
566 skgpu::v1::SurfaceDrawContext* sdc, in drawShapeWithMaskFilter()
594 skgpu::v1::SurfaceDrawContext*, in drawShapeWithMaskFilter() argument
[all …]
DGrClip.h16 namespace skgpu { namespace v1 { class SurfaceDrawContext; }} variable
67 virtual Effect apply(GrRecordingContext*, skgpu::v1::SurfaceDrawContext*, GrDrawOp*, GrAAType,
215 skgpu::v1::SurfaceDrawContext*, in apply() argument
DGrRecordingContextPriv.cpp94 sc = std::make_unique<skgpu::v1::SurfaceDrawContext>(this->context(), in makeSC()
162 return skgpu::v1::SurfaceDrawContext::Make(this->context(), in makeSFC()
223 return skgpu::v1::SurfaceDrawContext::Make(this->context(), in makeSFC()
275 return skgpu::v1::SurfaceDrawContext::MakeWithFallback(this->context(), in makeSFCWithFallback()
317 return skgpu::v1::SurfaceDrawContext::MakeFromBackendTexture(this->context(), in makeSFCFromBackendTexture()
DBaseDevice.h23 namespace v1 { class SurfaceDrawContext; } variable
50 virtual v1::SurfaceDrawContext* surfaceDrawContext() { return nullptr; } in surfaceDrawContext()
/third_party/skia/src/gpu/ops/
DSoftwarePathRenderer.h31 static bool GetShapeAndClipBounds(SurfaceDrawContext*,
40 static void DrawNonAARect(SurfaceDrawContext*,
47 static void DrawAroundInvPath(SurfaceDrawContext*,
59 SurfaceDrawContext*,
DTextureOp.h28 class SurfaceDrawContext; variable
67 static void AddTextureSetOps(skgpu::v1::SurfaceDrawContext*,
DFillRectOp.h27 class SurfaceDrawContext; variable
57 static void AddFillRectOps(SurfaceDrawContext*,
DGrDrawOp.h18 namespace skgpu { namespace v1 { class SurfaceDrawContext; }} variable
57 virtual ClipResult clipToShape(skgpu::v1::SurfaceDrawContext*, in clipToShape() argument
/third_party/skia/tests/
DSurfaceDrawContextTest.cpp20 static std::unique_ptr<skgpu::v1::SurfaceDrawContext> get_sdc(GrRecordingContext* rContext) { in get_sdc()
21 return skgpu::v1::SurfaceDrawContext::Make(rContext, GrColorType::kRGBA_8888, nullptr, in get_sdc()
27 skgpu::v1::SurfaceDrawContext* sdc, in check_instantiation_status()
DDMSAATest.cpp27 static void draw_paint_with_aa(skgpu::v1::SurfaceDrawContext* sdc, in draw_paint_with_aa()
37 static void draw_paint_with_dmsaa(skgpu::v1::SurfaceDrawContext* sdc, in draw_paint_with_dmsaa()
64 skgpu::v1::SurfaceDrawContext* sdc, in check_sdc_color()
89 auto sdc = skgpu::v1::SurfaceDrawContext::Make(dContext, GrColorType::kRGBA_8888, nullptr,
120 auto sdc = skgpu::v1::SurfaceDrawContext::Make(dContext, GrColorType::kRGBA_8888, nullptr,
144 auto sdc = skgpu::v1::SurfaceDrawContext::Make(dContext, GrColorType::kRGBA_8888, nullptr,
169 auto sdc = skgpu::v1::SurfaceDrawContext::Make(dContext, GrColorType::kRGBA_8888, nullptr,
DDefaultPathRendererTest.cpp42 skgpu::v1::SurfaceDrawContext* sdc, in read_back()
87 auto sdc = skgpu::v1::SurfaceDrawContext::Make(dContext, GrColorType::kRGBA_8888, nullptr, in run_test()
106 auto sdc = skgpu::v1::SurfaceDrawContext::Make(dContext, GrColorType::kRGBA_8888, nullptr, in run_test()
DSkSLCross.cpp15 skgpu::v1::SurfaceDrawContext*, SkVector a,
22 auto sdc = skgpu::v1::SurfaceDrawContext::Make(dContext, GrColorType::kRGBA_8888, nullptr, in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
93 skgpu::v1::SurfaceDrawContext* sdc, SkVector a, SkVector b, in run_test()
DClearTest.cpp34 using SurfaceDrawContext = skgpu::v1::SurfaceDrawContext; typedef
38 SurfaceDrawContext* sdc, in check_rect()
71 std::unique_ptr<SurfaceDrawContext> newSDC(GrRecordingContext* rContext, int w, int h) { in newSDC()
72 return SurfaceDrawContext::Make(rContext, GrColorType::kRGBA_8888, nullptr, in newSDC()
81 std::unique_ptr<SurfaceDrawContext> sdc; in clear_op_test()
/third_party/skia/tools/gpu/
DGrTest.cpp40 skgpu::v1::SurfaceDrawContext*, \
67 void GrDrawRandomOp(SkRandom* random, skgpu::v1::SurfaceDrawContext* sdc, GrPaint&& paint) { in GrDrawRandomOp()
72 skgpu::v1::SurfaceDrawContext*, in GrDrawRandomOp()
/third_party/skia/src/gpu/text/
DGrTextBlob.h40 namespace skgpu { namespace v1 { class SurfaceDrawContext; }} variable
82 skgpu::v1::SurfaceDrawContext*,
117 skgpu::v1::SurfaceDrawContext*) const = 0;
300 GrSubRunNoCachePainter(skgpu::v1::SurfaceDrawContext*,
325 skgpu::v1::SurfaceDrawContext* const fSDC;
/third_party/skia/src/core/
DSkGpuBlurUtils.h18 namespace skgpu { namespace v1 { class SurfaceDrawContext; }} variable
51 std::unique_ptr<skgpu::v1::SurfaceDrawContext> GaussianBlur(
DSkCanvasPriv.h21 namespace v1 { class SurfaceDrawContext; } variable
68 static skgpu::v1::SurfaceDrawContext* TopDeviceSurfaceDrawContext(SkCanvas*);

123