/third_party/skia/gm/ |
H A D | patch.cpp | 130 canvas->drawPatch(gCubics, nullptr, nullptr, modes[y], paint); in dopatch() 133 canvas->drawPatch(gCubics, colors, nullptr, modes[y], paint); in dopatch() 137 canvas->drawPatch(gCubics, nullptr, tex, modes[y], paint); in dopatch() 142 canvas->drawPatch(gCubics, colors, tex, modes[y], paint); in dopatch() 192 canvas->drawPatch(gCubics, colors, nullptr, SkBlendMode::kModulate, paint); in DEF_SIMPLE_GM()
|
H A D | runtimecolorfilter.cpp | 121 // Make an image from the vertices to do equivalent drawAtlas, drawPatch using an image shader. in DEF_SIMPLE_GM() 181 auto drawPatch = [&](float x, bool useCF) { in DEF_SIMPLE_GM() local 185 canvas->drawPatch(cubics, nullptr, pos, paint); in DEF_SIMPLE_GM() 197 drawPatch( 0, /*useCF=*/false); in DEF_SIMPLE_GM() 198 drawPatch(r.width() + 10, /*useCF=*/ true); in DEF_SIMPLE_GM()
|
H A D | imagefiltersbase.cpp | 182 canvas->drawPatch(gCubics, colors, /*texCoords=*/nullptr, SkBlendMode::kSrc, paint); in draw_patch()
|
/third_party/vk-gl-cts/external/openglcts/modules/glesext/tessellation_shader/ |
H A D | esextcTessellationShaderPrimitiveCoverage.cpp | 574 void TessellationShaderPrimitiveCoverage::drawPatch(glw::GLuint po_id, glw::GLuint n_patch_vertices, in drawPatch() function in glcts::TessellationShaderPrimitiveCoverage 755 drawPatch(m_triangles_tessellation_po_id, 3 /* n_patch_vertices */, 3 /* n_triangle_vertices */, in iterate() 772 drawPatch(m_triangles_tessellation_po_id, 3 /* n_patch_vertices */, 3 /* n_triangle_vertices */, set.inner, in iterate() 781 drawPatch(m_quad_tessellation_po_id, 4 /* n_patch_vertices */, 6 /* n_triangle_vertices (quad == 2 triangles) */, in iterate() 799 drawPatch(m_quad_tessellation_po_id, 4 /* n_patch_vertices */, in iterate()
|
H A D | esextcTessellationShaderPrimitiveCoverage.hpp | 70 void drawPatch(glw::GLuint po_id, glw::GLuint n_patch_vertices, glw::GLuint n_draw_call_vertices,
|
/third_party/skia/bench/ |
H A D | PatchBench.cpp | 16 * This bench measures the rendering time of the call SkCanvas::drawPatch with different types of 131 canvas->drawPatch(fCubics, nullptr, nullptr, fPaint); 134 canvas->drawPatch(fCubics, fColors, nullptr, fPaint); 137 canvas->drawPatch(fCubics, nullptr, fTexCoords, fPaint); 140 canvas->drawPatch(fCubics, fColors, fTexCoords, fPaint);
|
/third_party/skia/docs/examples/ |
H A D | Canvas_drawPatch_2_b.cpp | 17 canvas->drawPatch(cubics, nullptr, texCoords, paint); in REG_FIDDLE()
|
H A D | draw_patch.cpp | 20 canvas->drawPatch(cubics, nullptr, texCoords, SkBlendMode::kSrcOver, p); in REG_FIDDLE()
|
H A D | Canvas_drawPatch.cpp | 19 canvas->drawPatch(cubics, colors, texCoords, blend, paint); in REG_FIDDLE()
|
H A D | Canvas_drawPatch_2_a.cpp | 16 canvas->drawPatch(cubics, colors, nullptr, paint); in REG_FIDDLE()
|
/third_party/skia/include/core/ |
H A D | SkCanvas.h | 2025 void drawPatch(const SkPoint cubics[12], const SkColor colors[4], 2055 void drawPatch(const SkPoint cubics[12], const SkColor colors[4], in drawPatch() function 2057 this->drawPatch(cubics, colors, texCoords, SkBlendMode::kModulate, paint); in drawPatch()
|
/third_party/skia/src/core/ |
H A D | SkDevice.h | 278 virtual void drawPatch(const SkPoint cubics[12], const SkColor colors[4],
|
H A D | SkRecordDraw.cpp | 135 DRAW(DrawPatch, drawPatch(r.cubics, r.colors, r.texCoords, r.bmode, r.paint));
|
H A D | SkDevice.cpp | 161 void SkBaseDevice::drawPatch(const SkPoint cubics[12], const SkColor colors[4], in drawPatch() function in SkBaseDevice
|
H A D | SkPicturePlayback.cpp | 524 canvas->drawPatch(cubics, colors, texCoords, bmode, paint); in handleOp()
|
H A D | SkCanvas.cpp | 2435 void SkCanvas::drawPatch(const SkPoint cubics[12], const SkColor colors[4], 2449 // drawPatch has the same behavior restrictions as drawVertices 2462 this->topDevice()->drawPatch(cubics, colors, texCoords, bmode, layer->paint());
|
/third_party/skia/src/utils/ |
H A D | SkNWayCanvas.cpp | 331 iter->drawPatch(cubics, colors, texCoords, bmode, paint); in onDrawPatch()
|
/third_party/skia/tools/ |
H A D | MSKPPlayer.cpp | 184 fRecorder.getRecordingCanvas()->drawPatch(cubics, colors, texCoords, mode, paint);
|
/third_party/skia/modules/canvaskit/ |
H A D | externs.js | 243 drawPatch: function() {},
|
H A D | interface.js | 660 CanvasKit.Canvas.prototype.drawPatch = function(cubics, colors, texs, mode, paint) {
|
H A D | canvaskit_bindings.cpp | 1064 self.drawPatch(reinterpret_cast<const SkPoint*>(cubics), in EMSCRIPTEN_BINDINGS()
|
/third_party/skia/samplecode/ |
H A D | SampleClip.cpp | 592 canvas->drawPatch(fPatch, col, tex, SkBlendMode::kSrc, paint);
|
/third_party/skia/fuzz/ |
H A D | FuzzCanvas.cpp | 1500 canvas->drawPatch(cubics, colors, useTexCoords ? texCoords : nullptr
|
/third_party/skia/tools/debugger/ |
H A D | DrawCommand.cpp | 1738 canvas->drawPatch(fCubics, fColorsPtr, fTexCoordsPtr, fBlendMode, fPaint); in execute()
|