Move all Ganesh source files into ganesh subdirectory.

Change-Id: I238d29ba0250224fa593845ae65192653f58faff
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/528156
Reviewed-by: Kevin Lubick <kjlubick@google.com>
Reviewed-by: Jim Van Verth <jvanverth@google.com>
Commit-Queue: Greg Daniel <egdaniel@google.com>
This commit is contained in:
Greg Daniel 2022-04-07 11:20:24 -04:00 committed by SkCQ
parent f125d4e7a0
commit 719239cd69
1044 changed files with 13543 additions and 12313 deletions

View File

@ -55,10 +55,10 @@ CORE_DEPS = [
"//third_party:skcms",
] + select({
"//bazel/common_config_settings:has_gpu_backend": [
"//src/gpu:srcs",
"//src/gpu/ganesh:srcs",
"//src/sksl:srcs",
# TODO(kjlubick) should mock be test only?
"//src/gpu:mock_srcs",
"//src/gpu/ganesh:mock_srcs",
],
"//conditions:default": [],
}) + select_multi(

View File

@ -890,8 +890,8 @@ optional("gpu") {
public_defines += [ "SK_GL" ]
if (is_android) {
sources += [
"src/gpu/gl/egl/GrGLMakeEGLInterface.cpp",
"src/gpu/gl/egl/GrGLMakeNativeInterface_egl.cpp",
"src/gpu/ganesh/gl/egl/GrGLMakeEGLInterface.cpp",
"src/gpu/ganesh/gl/egl/GrGLMakeNativeInterface_egl.cpp",
]
# this lib is required to link against AHardwareBuffer
@ -900,29 +900,29 @@ optional("gpu") {
}
} else if (skia_use_egl) {
sources += [
"src/gpu/gl/egl/GrGLMakeEGLInterface.cpp",
"src/gpu/gl/egl/GrGLMakeNativeInterface_egl.cpp",
"src/gpu/ganesh/gl/egl/GrGLMakeEGLInterface.cpp",
"src/gpu/ganesh/gl/egl/GrGLMakeNativeInterface_egl.cpp",
]
libs += [ "EGL" ]
} else if (skia_use_webgl) {
sources += [ "src/gpu/gl/webgl/GrGLMakeNativeInterface_webgl.cpp" ]
sources += [ "src/gpu/ganesh/gl/webgl/GrGLMakeNativeInterface_webgl.cpp" ]
} else if (is_linux && skia_use_x11) {
sources += [
"src/gpu/gl/glx/GrGLMakeGLXInterface.cpp",
"src/gpu/gl/glx/GrGLMakeNativeInterface_glx.cpp",
"src/gpu/ganesh/gl/glx/GrGLMakeGLXInterface.cpp",
"src/gpu/ganesh/gl/glx/GrGLMakeNativeInterface_glx.cpp",
]
libs += [ "GL" ]
} else if (is_mac) {
sources += [ "src/gpu/gl/mac/GrGLMakeNativeInterface_mac.cpp" ]
sources += [ "src/gpu/ganesh/gl/mac/GrGLMakeNativeInterface_mac.cpp" ]
} else if (is_ios) {
sources += [ "src/gpu/gl/iOS/GrGLMakeNativeInterface_iOS.cpp" ]
sources += [ "src/gpu/ganesh/gl/iOS/GrGLMakeNativeInterface_iOS.cpp" ]
} else if (is_win && !skia_enable_winuwp) {
sources += [ "src/gpu/gl/win/GrGLMakeNativeInterface_win.cpp" ]
sources += [ "src/gpu/ganesh/gl/win/GrGLMakeNativeInterface_win.cpp" ]
if (target_cpu != "arm64") {
libs += [ "OpenGL32.lib" ]
}
} else {
sources += [ "src/gpu/gl/GrGLMakeNativeInterface_none.cpp" ]
sources += [ "src/gpu/ganesh/gl/GrGLMakeNativeInterface_none.cpp" ]
}
sources += skia_gl_gpu_sources
}

View File

@ -13,9 +13,9 @@
#include "include/gpu/GrDirectContext.h"
#include "include/utils/SkRandom.h"
#include "src/core/SkCanvasPriv.h"
#include "src/gpu/GrOpsTypes.h"
#include "src/gpu/SkGr.h"
#include "src/gpu/v1/SurfaceDrawContext_v1.h"
#include "src/gpu/ganesh/GrOpsTypes.h"
#include "src/gpu/ganesh/SkGr.h"
#include "src/gpu/ganesh/v1/SurfaceDrawContext_v1.h"
// Benchmarks that exercise the bulk image and solid color quad APIs, under a variety of patterns:
enum class ImageMode {

View File

@ -18,7 +18,7 @@
#include "include/core/SkRect.h"
#include "include/effects/SkGradientShader.h"
#include "src/core/SkCanvasPriv.h"
#include "src/gpu/v1/SurfaceDrawContext_v1.h"
#include "src/gpu/ganesh/v1/SurfaceDrawContext_v1.h"
static sk_sp<SkShader> make_shader() {
static const SkPoint kPts[] = {{0, 0}, {10, 10}};

View File

@ -8,7 +8,7 @@
#include "bench/GMBench.h"
#include "include/gpu/GrRecordingContext.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
GMBench::GMBench(std::unique_ptr<skiagm::GM> gm) : fGM(std::move(gm)) {
fGM->setMode(skiagm::GM::kBench_Mode);

View File

@ -13,10 +13,10 @@
#include "include/gpu/GrRecordingContext.h"
#include "src/core/SkStrikeCache.h"
#include "src/core/SkUtils.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/SkGr.h"
#include "src/gpu/text/GrStrikeCache.h"
#include "src/gpu/text/GrTextBlob.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/SkGr.h"
#include "src/gpu/ganesh/text/GrStrikeCache.h"
#include "src/gpu/ganesh/text/GrTextBlob.h"
#include "src/utils/SkUTF.h"
// From Project Guttenberg. This is UTF-8 text.

View File

@ -8,7 +8,7 @@
#include "bench/Benchmark.h"
#include "include/private/GrTypesPriv.h"
#include "include/utils/SkRandom.h"
#include "src/gpu/GrMemoryPool.h"
#include "src/gpu/ganesh/GrMemoryPool.h"
#include <type_traits>

View File

@ -7,8 +7,8 @@
#include "bench/Benchmark.h"
#include "include/utils/SkRandom.h"
#include "src/gpu/geometry/GrQuad.h"
#include "src/gpu/geometry/GrQuadUtils.h"
#include "src/gpu/ganesh/geometry/GrQuad.h"
#include "src/gpu/ganesh/geometry/GrQuadUtils.h"
class GrQuadBoundsBench : public Benchmark {
public:

View File

@ -9,11 +9,11 @@
#include "include/core/SkCanvas.h"
#include "include/gpu/GrDirectContext.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/GrGpu.h"
#include "src/gpu/GrGpuResource.h"
#include "src/gpu/GrGpuResourcePriv.h"
#include "src/gpu/GrResourceCache.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrGpu.h"
#include "src/gpu/ganesh/GrGpuResource.h"
#include "src/gpu/ganesh/GrGpuResourcePriv.h"
#include "src/gpu/ganesh/GrResourceCache.h"
enum {
CACHE_SIZE_COUNT = 4096,

View File

@ -10,8 +10,8 @@
#include "include/core/SkImage.h"
#include "include/core/SkSurface.h"
#include "include/gpu/GrDirectContext.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/GrResourceCache.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrResourceCache.h"
#include "tools/ToolUtils.h"

View File

@ -12,8 +12,8 @@
#include "include/private/SkTDArray.h"
#include "include/utils/SkRandom.h"
#include "src/gpu/GrRectanizerPow2.h"
#include "src/gpu/GrRectanizerSkyline.h"
#include "src/gpu/ganesh/GrRectanizerPow2.h"
#include "src/gpu/ganesh/GrRectanizerSkyline.h"
/**
* This bench exercises Ganesh' GrRectanizer classes. It exercises the following

View File

@ -8,7 +8,7 @@
#include "bench/SKPBench.h"
#include "include/core/SkSurface.h"
#include "include/gpu/GrDirectContext.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "tools/flags/CommandLineFlags.h"
@ -136,7 +136,7 @@ void SKPBench::drawPicture() {
}
}
#include "src/gpu/GrGpu.h"
#include "src/gpu/ganesh/GrGpu.h"
static void draw_pic_for_stats(SkCanvas* canvas,
GrDirectContext* dContext,
const SkPicture* picture,

View File

@ -8,9 +8,9 @@
#include "bench/ResultsWriter.h"
#include "bench/SkSLBench.h"
#include "include/core/SkCanvas.h"
#include "src/gpu/GrCaps.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/mock/GrMockCaps.h"
#include "src/gpu/ganesh/GrCaps.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/mock/GrMockCaps.h"
#include "src/sksl/SkSLCompiler.h"
#include "src/sksl/SkSLDSLParser.h"

View File

@ -9,10 +9,10 @@
#include "include/gpu/GrDirectContext.h"
#include "src/core/SkPathPriv.h"
#include "src/core/SkRectPriv.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/mock/GrMockOpTarget.h"
#include "src/gpu/ops/PathTessellator.h"
#include "src/gpu/ops/StrokeTessellator.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "src/gpu/ganesh/mock/GrMockOpTarget.h"
#include "src/gpu/ganesh/ops/PathTessellator.h"
#include "src/gpu/ganesh/ops/StrokeTessellator.h"
#include "src/gpu/tessellate/AffineMatrix.h"
#include "src/gpu/tessellate/MiddleOutPolygonTriangulator.h"
#include "src/gpu/tessellate/WangsFormula.h"

View File

@ -8,7 +8,7 @@
#include "bench/Benchmark.h"
#include "include/core/SkString.h"
#include "include/utils/SkRandom.h"
#include "src/gpu/GrTTopoSort.h"
#include "src/gpu/ganesh/GrTTopoSort.h"
#include "tools/ToolUtils.h"

View File

@ -8,9 +8,9 @@
#include "bench/Benchmark.h"
#include "include/core/SkPath.h"
#include "src/core/SkArenaAlloc.h"
#include "src/gpu/GrEagerVertexAllocator.h"
#include "src/gpu/geometry/GrInnerFanTriangulator.h"
#include "src/gpu/geometry/GrTriangulator.h"
#include "src/gpu/ganesh/GrEagerVertexAllocator.h"
#include "src/gpu/ganesh/geometry/GrInnerFanTriangulator.h"
#include "src/gpu/ganesh/geometry/GrTriangulator.h"
#include <vector>
struct TigerPath {

View File

@ -11,19 +11,19 @@
#include "include/gpu/GrDirectContext.h"
#include "include/private/SkHalf.h"
#include "src/core/SkColorSpacePriv.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/GrGeometryProcessor.h"
#include "src/gpu/GrMemoryPool.h"
#include "src/gpu/GrProgramInfo.h"
#include "src/gpu/KeyBuilder.h"
#include "src/gpu/SkGr.h"
#include "src/gpu/glsl/GrGLSLColorSpaceXformHelper.h"
#include "src/gpu/glsl/GrGLSLFragmentShaderBuilder.h"
#include "src/gpu/glsl/GrGLSLVarying.h"
#include "src/gpu/glsl/GrGLSLVertexGeoBuilder.h"
#include "src/gpu/ops/GrMeshDrawOp.h"
#include "src/gpu/ops/GrSimpleMeshDrawOpHelper.h"
#include "src/gpu/v1/SurfaceDrawContext_v1.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrGeometryProcessor.h"
#include "src/gpu/ganesh/GrMemoryPool.h"
#include "src/gpu/ganesh/GrProgramInfo.h"
#include "src/gpu/ganesh/SkGr.h"
#include "src/gpu/ganesh/glsl/GrGLSLColorSpaceXformHelper.h"
#include "src/gpu/ganesh/glsl/GrGLSLFragmentShaderBuilder.h"
#include "src/gpu/ganesh/glsl/GrGLSLVarying.h"
#include "src/gpu/ganesh/glsl/GrGLSLVertexGeoBuilder.h"
#include "src/gpu/ganesh/ops/GrMeshDrawOp.h"
#include "src/gpu/ganesh/ops/GrSimpleMeshDrawOpHelper.h"
#include "src/gpu/ganesh/v1/SurfaceDrawContext_v1.h"
namespace {

View File

@ -91,9 +91,9 @@ SK_BLITTER_TRACE_INIT
#endif
#include "include/gpu/GrDirectContext.h"
#include "src/gpu/GrCaps.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/SkGr.h"
#include "src/gpu/ganesh/GrCaps.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "src/gpu/ganesh/SkGr.h"
#include "tools/gpu/GrContextFactory.h"
using sk_gpu_test::ContextInfo;

View File

@ -45,8 +45,8 @@
#include "src/core/SkRecorder.h"
#include "src/core/SkTLazy.h"
#include "src/core/SkTaskGroup.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/GrGpu.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrGpu.h"
#include "src/utils/SkJSONWriter.h"
#include "src/utils/SkMultiPictureDocumentPriv.h"
#include "src/utils/SkOSPath.h"

View File

@ -9,8 +9,8 @@
#include "include/core/SkGraphics.h"
#include "include/gpu/GrDirectContext.h"
#include "src/core/SkOSFile.h"
#include "src/gpu/GrCaps.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrCaps.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "src/utils/SkOSPath.h"
#include "tools/ToolUtils.h"
#include "tools/flags/CommandLineFlags.h"

View File

@ -50,14 +50,14 @@
#if SK_SUPPORT_GPU
#include "include/gpu/GrDirectContext.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "tools/gpu/GrContextFactory.h"
#endif
#ifdef SK_GL
#include "include/gpu/gl/GrGLFunctions.h"
#include "src/gpu/gl/GrGLGpu.h"
#include "src/gpu/gl/GrGLUtil.h"
#include "src/gpu/ganesh/gl/GrGLGpu.h"
#include "src/gpu/ganesh/gl/GrGLUtil.h"
#endif
#include <iostream>

View File

@ -13,7 +13,7 @@
#include "include/core/SkSurfaceCharacterization.h"
#include "include/gpu/GrDirectContext.h"
#include "include/private/GrTypesPriv.h"
#include "src/gpu/GrShaderCaps.h"
#include "src/gpu/ganesh/GrShaderCaps.h"
#include "tools/gpu/GrContextFactory.h"
#include "fuzz/Fuzz.h"

View File

@ -8,9 +8,9 @@
#include "fuzz/Fuzz.h"
#include "fuzz/FuzzCommon.h"
#include "include/core/SkPath.h"
#include "src/gpu/GrEagerVertexAllocator.h"
#include "src/gpu/geometry/GrPathUtils.h"
#include "src/gpu/geometry/GrTriangulator.h"
#include "src/gpu/ganesh/GrEagerVertexAllocator.h"
#include "src/gpu/ganesh/geometry/GrPathUtils.h"
#include "src/gpu/ganesh/geometry/GrTriangulator.h"
DEF_FUZZ(Triangulation, fuzz) {

View File

@ -5,7 +5,7 @@
* found in the LICENSE file.
*/
#include "src/gpu/GrShaderCaps.h"
#include "src/gpu/ganesh/GrShaderCaps.h"
#include "src/sksl/SkSLCompiler.h"
#include "fuzz/Fuzz.h"

View File

@ -5,7 +5,7 @@
* found in the LICENSE file.
*/
#include "src/gpu/GrShaderCaps.h"
#include "src/gpu/ganesh/GrShaderCaps.h"
#include "src/sksl/SkSLCompiler.h"
#include "fuzz/Fuzz.h"

View File

@ -5,7 +5,7 @@
* found in the LICENSE file.
*/
#include "src/gpu/GrShaderCaps.h"
#include "src/gpu/ganesh/GrShaderCaps.h"
#include "src/sksl/SkSLCompiler.h"
#include "src/sksl/codegen/SkSLPipelineStageCodeGenerator.h"
#include "src/sksl/ir/SkSLVarDeclarations.h"

View File

@ -5,7 +5,7 @@
* found in the LICENSE file.
*/
#include "src/gpu/GrShaderCaps.h"
#include "src/gpu/ganesh/GrShaderCaps.h"
#include "src/sksl/SkSLCompiler.h"
#include "fuzz/Fuzz.h"

View File

@ -12,7 +12,7 @@
#include "include/core/SkSurface.h"
#include "include/effects/SkBlenders.h"
#include "include/effects/SkRuntimeEffect.h"
#include "src/gpu/GrShaderCaps.h"
#include "src/gpu/ganesh/GrShaderCaps.h"
#include "fuzz/Fuzz.h"

View File

@ -520,10 +520,10 @@ generated_cc_atom(
"//include/core:SkString_hdr",
"//include/private:GrTypesPriv_hdr",
"//src/core:SkCanvasPriv_hdr",
"//src/gpu:GrFragmentProcessor_hdr",
"//src/gpu:GrPaint_hdr",
"//src/gpu/effects:GrPorterDuffXferProcessor_hdr",
"//src/gpu/v1:SurfaceDrawContext_v1_hdr",
"//src/gpu/ganesh:GrFragmentProcessor_hdr",
"//src/gpu/ganesh:GrPaint_hdr",
"//src/gpu/ganesh/effects:GrPorterDuffXferProcessor_hdr",
"//src/gpu/ganesh/v1:SurfaceDrawContext_v1_hdr",
"//tools/gpu:TestOps_hdr",
],
)
@ -925,21 +925,21 @@ generated_cc_atom(
"//include/core:SkRect_hdr",
"//include/gpu:GrRecordingContext_hdr",
"//src/core:SkCanvasPriv_hdr",
"//src/gpu:GrBuffer_hdr",
"//src/gpu:GrGeometryProcessor_hdr",
"//src/gpu:GrGpuBuffer_hdr",
"//src/gpu:GrOpFlushState_hdr",
"//src/gpu:GrProcessorSet_hdr",
"//src/gpu:GrProcessor_hdr",
"//src/gpu:GrProgramInfo_hdr",
"//src/gpu:GrResourceProvider_hdr",
"//src/gpu:GrShaderVar_hdr",
"//src/gpu:KeyBuilder_hdr",
"//src/gpu/glsl:GrGLSLFragmentShaderBuilder_hdr",
"//src/gpu/glsl:GrGLSLVertexGeoBuilder_hdr",
"//src/gpu/ops:GrDrawOp_hdr",
"//src/gpu/ops:GrOp_hdr",
"//src/gpu/v1:SurfaceDrawContext_v1_hdr",
"//src/gpu/ganesh:GrBuffer_hdr",
"//src/gpu/ganesh:GrGeometryProcessor_hdr",
"//src/gpu/ganesh:GrGpuBuffer_hdr",
"//src/gpu/ganesh:GrOpFlushState_hdr",
"//src/gpu/ganesh:GrProcessorSet_hdr",
"//src/gpu/ganesh:GrProcessor_hdr",
"//src/gpu/ganesh:GrProgramInfo_hdr",
"//src/gpu/ganesh:GrResourceProvider_hdr",
"//src/gpu/ganesh:GrShaderVar_hdr",
"//src/gpu/ganesh/glsl:GrGLSLFragmentShaderBuilder_hdr",
"//src/gpu/ganesh/glsl:GrGLSLVertexGeoBuilder_hdr",
"//src/gpu/ganesh/ops:GrDrawOp_hdr",
"//src/gpu/ganesh/ops:GrOp_hdr",
"//src/gpu/ganesh/v1:SurfaceDrawContext_v1_hdr",
"//tools/gpu:ProxyUtils_hdr",
],
)
@ -1035,8 +1035,8 @@ generated_cc_atom(
"//include/gpu:GrDirectContext_hdr",
"//include/gpu:GrRecordingContext_hdr",
"//src/core:SkCompressedDataUtils_hdr",
"//src/gpu:GrCaps_hdr",
"//src/gpu:GrImageContextPriv_hdr",
"//src/gpu/ganesh:GrCaps_hdr",
"//src/gpu/ganesh:GrImageContextPriv_hdr",
"//src/image:SkImage_Base_hdr",
"//src/image:SkImage_GpuBase_hdr",
"//tools/gpu:ProxyUtils_hdr",
@ -1068,26 +1068,26 @@ generated_cc_atom(
"//src/core:SkCanvasPriv_hdr",
"//src/core:SkGeometry_hdr",
"//src/core:SkPointPriv_hdr",
"//src/gpu:GrCaps_hdr",
"//src/gpu:GrDirectContextPriv_hdr",
"//src/gpu:GrGeometryProcessor_hdr",
"//src/gpu:GrMemoryPool_hdr",
"//src/gpu:GrOpFlushState_hdr",
"//src/gpu:GrOpsRenderPass_hdr",
"//src/gpu:GrPaint_hdr",
"//src/gpu:GrProcessorAnalysis_hdr",
"//src/gpu:GrProcessorSet_hdr",
"//src/gpu:GrProgramInfo_hdr",
"//src/gpu:GrRecordingContextPriv_hdr",
"//src/gpu:GrUserStencilSettings_hdr",
"//src/gpu/effects:GrBezierEffect_hdr",
"//src/gpu/effects:GrPorterDuffXferProcessor_hdr",
"//src/gpu/geometry:GrPathUtils_hdr",
"//src/gpu/ops:GrDrawOp_hdr",
"//src/gpu/ops:GrMeshDrawOp_hdr",
"//src/gpu/ops:GrOp_hdr",
"//src/gpu/ops:GrSimpleMeshDrawOpHelper_hdr",
"//src/gpu/v1:SurfaceDrawContext_v1_hdr",
"//src/gpu/ganesh:GrCaps_hdr",
"//src/gpu/ganesh:GrDirectContextPriv_hdr",
"//src/gpu/ganesh:GrGeometryProcessor_hdr",
"//src/gpu/ganesh:GrMemoryPool_hdr",
"//src/gpu/ganesh:GrOpFlushState_hdr",
"//src/gpu/ganesh:GrOpsRenderPass_hdr",
"//src/gpu/ganesh:GrPaint_hdr",
"//src/gpu/ganesh:GrProcessorAnalysis_hdr",
"//src/gpu/ganesh:GrProcessorSet_hdr",
"//src/gpu/ganesh:GrProgramInfo_hdr",
"//src/gpu/ganesh:GrRecordingContextPriv_hdr",
"//src/gpu/ganesh:GrUserStencilSettings_hdr",
"//src/gpu/ganesh/effects:GrBezierEffect_hdr",
"//src/gpu/ganesh/effects:GrPorterDuffXferProcessor_hdr",
"//src/gpu/ganesh/geometry:GrPathUtils_hdr",
"//src/gpu/ganesh/ops:GrDrawOp_hdr",
"//src/gpu/ganesh/ops:GrMeshDrawOp_hdr",
"//src/gpu/ganesh/ops:GrOp_hdr",
"//src/gpu/ganesh/ops:GrSimpleMeshDrawOpHelper_hdr",
"//src/gpu/ganesh/v1:SurfaceDrawContext_v1_hdr",
],
)
@ -1196,14 +1196,14 @@ generated_cc_atom(
"//include/core:SkTypes_hdr",
"//include/private:GrTypesPriv_hdr",
"//src/core:SkCanvasPriv_hdr",
"//src/gpu:GrCaps_hdr",
"//src/gpu:GrFragmentProcessor_hdr",
"//src/gpu:GrPaint_hdr",
"//src/gpu/effects:GrPorterDuffXferProcessor_hdr",
"//src/gpu/effects:GrRRectEffect_hdr",
"//src/gpu/ops:FillRectOp_hdr",
"//src/gpu/ops:GrDrawOp_hdr",
"//src/gpu/v1:SurfaceDrawContext_v1_hdr",
"//src/gpu/ganesh:GrCaps_hdr",
"//src/gpu/ganesh:GrFragmentProcessor_hdr",
"//src/gpu/ganesh:GrPaint_hdr",
"//src/gpu/ganesh/effects:GrPorterDuffXferProcessor_hdr",
"//src/gpu/ganesh/effects:GrRRectEffect_hdr",
"//src/gpu/ganesh/ops:FillRectOp_hdr",
"//src/gpu/ganesh/ops:GrDrawOp_hdr",
"//src/gpu/ganesh/v1:SurfaceDrawContext_v1_hdr",
"//tools:ToolUtils_hdr",
],
)
@ -1393,8 +1393,8 @@ generated_cc_atom(
"//include/core:SkTileMode_hdr",
"//include/core:SkTypes_hdr",
"//include/gpu:GrRecordingContext_hdr",
"//src/gpu:GrCaps_hdr",
"//src/gpu:GrRecordingContextPriv_hdr",
"//src/gpu/ganesh:GrCaps_hdr",
"//src/gpu/ganesh:GrRecordingContextPriv_hdr",
],
)
@ -1619,7 +1619,7 @@ generated_cc_atom(
"//include/private:SkTo_hdr",
"//src/core:SkBlurMask_hdr",
"//src/core:SkMask_hdr",
"//src/gpu:GrRecordingContextPriv_hdr",
"//src/gpu/ganesh:GrRecordingContextPriv_hdr",
"//tools/timer:TimeUtils_hdr",
],
)
@ -1927,9 +1927,9 @@ generated_cc_atom(
"//include/core:SkRect_hdr",
"//include/private:SkColorData_hdr",
"//src/core:SkCanvasPriv_hdr",
"//src/gpu:GrRecordingContextPriv_hdr",
"//src/gpu:SurfaceFillContext_hdr",
"//src/gpu:Swizzle_hdr",
"//src/gpu/ganesh:GrRecordingContextPriv_hdr",
"//src/gpu/ganesh:SurfaceFillContext_hdr",
],
)
@ -2040,32 +2040,32 @@ generated_cc_atom(
"//include/private:GrTypesPriv_hdr",
"//include/private:SkColorData_hdr",
"//src/core:SkCanvasPriv_hdr",
"//src/gpu:GrBuffer_hdr",
"//src/gpu:GrCaps_hdr",
"//src/gpu:GrColorSpaceXform_hdr",
"//src/gpu:GrDirectContextPriv_hdr",
"//src/gpu:GrGeometryProcessor_hdr",
"//src/gpu:GrGpuBuffer_hdr",
"//src/gpu:GrMemoryPool_hdr",
"//src/gpu:GrOpFlushState_hdr",
"//src/gpu:GrOpsRenderPass_hdr",
"//src/gpu:GrPipeline_hdr",
"//src/gpu:GrProcessorSet_hdr",
"//src/gpu:GrProcessor_hdr",
"//src/gpu:GrProgramInfo_hdr",
"//src/gpu:GrRecordingContextPriv_hdr",
"//src/gpu:GrResourceProvider_hdr",
"//src/gpu:GrSamplerState_hdr",
"//src/gpu:GrShaderCaps_hdr",
"//src/gpu:GrShaderVar_hdr",
"//src/gpu:GrSurfaceProxy_hdr",
"//src/gpu:GrTextureProxy_hdr",
"//src/gpu:KeyBuilder_hdr",
"//src/gpu/glsl:GrGLSLFragmentShaderBuilder_hdr",
"//src/gpu/glsl:GrGLSLVarying_hdr",
"//src/gpu/ops:GrDrawOp_hdr",
"//src/gpu/ops:GrOp_hdr",
"//src/gpu/v1:SurfaceDrawContext_v1_hdr",
"//src/gpu/ganesh:GrBuffer_hdr",
"//src/gpu/ganesh:GrCaps_hdr",
"//src/gpu/ganesh:GrColorSpaceXform_hdr",
"//src/gpu/ganesh:GrDirectContextPriv_hdr",
"//src/gpu/ganesh:GrGeometryProcessor_hdr",
"//src/gpu/ganesh:GrGpuBuffer_hdr",
"//src/gpu/ganesh:GrMemoryPool_hdr",
"//src/gpu/ganesh:GrOpFlushState_hdr",
"//src/gpu/ganesh:GrOpsRenderPass_hdr",
"//src/gpu/ganesh:GrPipeline_hdr",
"//src/gpu/ganesh:GrProcessorSet_hdr",
"//src/gpu/ganesh:GrProcessor_hdr",
"//src/gpu/ganesh:GrProgramInfo_hdr",
"//src/gpu/ganesh:GrRecordingContextPriv_hdr",
"//src/gpu/ganesh:GrResourceProvider_hdr",
"//src/gpu/ganesh:GrSamplerState_hdr",
"//src/gpu/ganesh:GrShaderCaps_hdr",
"//src/gpu/ganesh:GrShaderVar_hdr",
"//src/gpu/ganesh:GrSurfaceProxy_hdr",
"//src/gpu/ganesh:GrTextureProxy_hdr",
"//src/gpu/ganesh/glsl:GrGLSLFragmentShaderBuilder_hdr",
"//src/gpu/ganesh/glsl:GrGLSLVarying_hdr",
"//src/gpu/ganesh/ops:GrDrawOp_hdr",
"//src/gpu/ganesh/ops:GrOp_hdr",
"//src/gpu/ganesh/v1:SurfaceDrawContext_v1_hdr",
"//tools/gpu:ProxyUtils_hdr",
],
)
@ -2551,9 +2551,9 @@ generated_cc_atom(
"//include/gpu:GrRecordingContext_hdr",
"//src/core:SkCompressedDataUtils_hdr",
"//src/core:SkMipmap_hdr",
"//src/gpu:GrDataUtils_hdr",
"//src/gpu:GrImageContextPriv_hdr",
"//src/gpu:GrRecordingContextPriv_hdr",
"//src/gpu/ganesh:GrDataUtils_hdr",
"//src/gpu/ganesh:GrImageContextPriv_hdr",
"//src/gpu/ganesh:GrRecordingContextPriv_hdr",
"//src/image:SkImage_Base_hdr",
"//src/image:SkImage_GpuBase_hdr",
"//third_party:etc1",
@ -2623,12 +2623,12 @@ generated_cc_atom(
"//include/private:SkColorData_hdr",
"//src/core:SkCanvasPriv_hdr",
"//src/core:SkMatrixProvider_hdr",
"//src/gpu:GrColor_hdr",
"//src/gpu:GrFragmentProcessor_hdr",
"//src/gpu:GrPaint_hdr",
"//src/gpu:SkGr_hdr",
"//src/gpu/ops:GrOp_hdr",
"//src/gpu/v1:SurfaceDrawContext_v1_hdr",
"//src/gpu/ganesh:GrColor_hdr",
"//src/gpu/ganesh:GrFragmentProcessor_hdr",
"//src/gpu/ganesh:GrPaint_hdr",
"//src/gpu/ganesh:SkGr_hdr",
"//src/gpu/ganesh/ops:GrOp_hdr",
"//src/gpu/ganesh/v1:SurfaceDrawContext_v1_hdr",
"//tools:ToolUtils_hdr",
"//tools/gpu:TestOps_hdr",
],
@ -2725,11 +2725,11 @@ generated_cc_atom(
"//include/core:SkString_hdr",
"//include/private:GrTypesPriv_hdr",
"//src/core:SkCanvasPriv_hdr",
"//src/gpu:GrFragmentProcessor_hdr",
"//src/gpu:GrPaint_hdr",
"//src/gpu/effects:GrConvexPolyEffect_hdr",
"//src/gpu/effects:GrPorterDuffXferProcessor_hdr",
"//src/gpu/v1:SurfaceDrawContext_v1_hdr",
"//src/gpu/ganesh:GrFragmentProcessor_hdr",
"//src/gpu/ganesh:GrPaint_hdr",
"//src/gpu/ganesh/effects:GrConvexPolyEffect_hdr",
"//src/gpu/ganesh/effects:GrPorterDuffXferProcessor_hdr",
"//src/gpu/ganesh/v1:SurfaceDrawContext_v1_hdr",
"//tools/gpu:TestOps_hdr",
],
)
@ -3356,12 +3356,12 @@ generated_cc_atom(
"//include/core:SkTypes_hdr",
"//include/effects:SkImageFilters_hdr",
"//src/core:SkCanvasPriv_hdr",
"//src/gpu:GrDirectContextPriv_hdr",
"//src/gpu:GrFragmentProcessor_hdr",
"//src/gpu:GrStyle_hdr",
"//src/gpu:SkGr_hdr",
"//src/gpu/glsl:GrGLSLFragmentShaderBuilder_hdr",
"//src/gpu/v1:SurfaceDrawContext_v1_hdr",
"//src/gpu/ganesh:GrDirectContextPriv_hdr",
"//src/gpu/ganesh:GrFragmentProcessor_hdr",
"//src/gpu/ganesh:GrStyle_hdr",
"//src/gpu/ganesh:SkGr_hdr",
"//src/gpu/ganesh/glsl:GrGLSLFragmentShaderBuilder_hdr",
"//src/gpu/ganesh/v1:SurfaceDrawContext_v1_hdr",
"//tools:Resources_hdr",
"//tools:ToolUtils_hdr",
],
@ -3736,9 +3736,9 @@ generated_cc_atom(
"//include/private:GrTypesPriv_hdr",
"//src/core:SkCanvasPriv_hdr",
"//src/core:SkMatrixProvider_hdr",
"//src/gpu:GrPaint_hdr",
"//src/gpu:SkGr_hdr",
"//src/gpu/v1:SurfaceDrawContext_v1_hdr",
"//src/gpu/ganesh:GrPaint_hdr",
"//src/gpu/ganesh:SkGr_hdr",
"//src/gpu/ganesh/v1:SurfaceDrawContext_v1_hdr",
"//tools:ToolUtils_hdr",
],
)
@ -3849,8 +3849,8 @@ generated_cc_atom(
"//include/effects:SkRuntimeEffect_hdr",
"//include/sksl:DSL_hdr",
"//src/core:SkCanvasPriv_hdr",
"//src/gpu:SurfaceFillContext_hdr",
"//src/gpu/glsl:GrGLSLFragmentShaderBuilder_hdr",
"//src/gpu/ganesh:SurfaceFillContext_hdr",
"//src/gpu/ganesh/glsl:GrGLSLFragmentShaderBuilder_hdr",
"//src/sksl/dsl/priv:DSLFPs_hdr",
"//src/sksl/dsl/priv:DSLWriter_hdr",
"//src/sksl/ir:SkSLVariable_hdr",
@ -4081,9 +4081,9 @@ generated_cc_atom(
"//include/gpu:GrRecordingContext_hdr",
"//src/core:SkCompressedDataUtils_hdr",
"//src/core:SkMipmap_hdr",
"//src/gpu:GrImageContextPriv_hdr",
"//src/gpu:GrRecordingContextPriv_hdr",
"//src/gpu/gl:GrGLDefines_hdr",
"//src/gpu/ganesh:GrImageContextPriv_hdr",
"//src/gpu/ganesh:GrRecordingContextPriv_hdr",
"//src/gpu/ganesh/gl:GrGLDefines_impl_hdr",
"//src/image:SkImage_Base_hdr",
"//src/image:SkImage_GpuBase_hdr",
"//tools:Resources_hdr",
@ -4292,8 +4292,8 @@ generated_cc_atom(
"//include/gpu:GrRecordingContext_hdr",
"//include/gpu:GrTypes_hdr",
"//include/private:SkTArray_hdr",
"//src/gpu:GrDirectContextPriv_hdr",
"//src/gpu:GrPixmap_hdr",
"//src/gpu/ganesh:GrDirectContextPriv_hdr",
"//src/gpu/ganesh:GrPixmap_hdr",
"//src/image:SkImage_Base_hdr",
"//src/image:SkImage_Gpu_hdr",
"//tools:ToolUtils_hdr",
@ -4321,7 +4321,7 @@ generated_cc_atom(
"//include/gpu:GrContextOptions_hdr",
"//include/gpu:GrDirectContext_hdr",
"//include/private:GrTypesPriv_hdr",
"//src/gpu:GrDirectContextPriv_hdr",
"//src/gpu/ganesh:GrDirectContextPriv_hdr",
"//tools:ToolUtils_hdr",
],
)
@ -4382,7 +4382,7 @@ generated_cc_atom(
"//include/gpu:GrRecordingContext_hdr",
"//include/private:GrTypesPriv_hdr",
"//include/private:SkTemplates_hdr",
"//src/gpu:GrDirectContextPriv_hdr",
"//src/gpu/ganesh:GrDirectContextPriv_hdr",
"//tools:ToolUtils_hdr",
],
)
@ -4438,13 +4438,13 @@ generated_cc_atom(
"//include/core:SkFont_hdr",
"//include/effects:SkRuntimeEffect_hdr",
"//src/core:SkCanvasPriv_hdr",
"//src/gpu:GrDirectContextPriv_hdr",
"//src/gpu:GrPaint_hdr",
"//src/gpu:SkGr_hdr",
"//src/gpu/effects:GrMatrixEffect_hdr",
"//src/gpu/effects:GrTextureEffect_hdr",
"//src/gpu/glsl:GrGLSLFragmentShaderBuilder_hdr",
"//src/gpu/v1:SurfaceDrawContext_v1_hdr",
"//src/gpu/ganesh:GrDirectContextPriv_hdr",
"//src/gpu/ganesh:GrPaint_hdr",
"//src/gpu/ganesh:SkGr_hdr",
"//src/gpu/ganesh/effects:GrMatrixEffect_hdr",
"//src/gpu/ganesh/effects:GrTextureEffect_hdr",
"//src/gpu/ganesh/glsl:GrGLSLFragmentShaderBuilder_hdr",
"//src/gpu/ganesh/v1:SurfaceDrawContext_v1_hdr",
"//tools:ToolUtils_hdr",
],
)
@ -4468,15 +4468,15 @@ generated_cc_atom(
"//include/core:SkTileMode_hdr",
"//include/core:SkTypes_hdr",
"//src/core:SkCanvasPriv_hdr",
"//src/gpu:GrCaps_hdr",
"//src/gpu:GrDirectContextPriv_hdr",
"//src/gpu:GrFragmentProcessor_hdr",
"//src/gpu:SkGr_hdr",
"//src/gpu:SurfaceFillContext_hdr",
"//src/gpu/effects:GrRRectEffect_hdr",
"//src/gpu/effects:GrSkSLFP_hdr",
"//src/gpu/effects:GrTextureEffect_hdr",
"//src/gpu/glsl:GrGLSLFragmentShaderBuilder_hdr",
"//src/gpu/ganesh:GrCaps_hdr",
"//src/gpu/ganesh:GrDirectContextPriv_hdr",
"//src/gpu/ganesh:GrFragmentProcessor_hdr",
"//src/gpu/ganesh:SkGr_hdr",
"//src/gpu/ganesh:SurfaceFillContext_hdr",
"//src/gpu/ganesh/effects:GrRRectEffect_hdr",
"//src/gpu/ganesh/effects:GrSkSLFP_hdr",
"//src/gpu/ganesh/effects:GrTextureEffect_hdr",
"//src/gpu/ganesh/glsl:GrGLSLFragmentShaderBuilder_hdr",
"//tools:Resources_hdr",
"//tools:ToolUtils_hdr",
],
@ -4499,30 +4499,30 @@ generated_cc_atom(
"//include/gpu:GrRecordingContext_hdr",
"//include/private:GrTypesPriv_hdr",
"//src/core:SkCanvasPriv_hdr",
"//src/gpu:GrBuffer_hdr",
"//src/gpu:GrCaps_hdr",
"//src/gpu:GrDirectContextPriv_hdr",
"//src/gpu:GrGeometryProcessor_hdr",
"//src/gpu:GrGpuBuffer_hdr",
"//src/gpu:GrMemoryPool_hdr",
"//src/gpu:GrOpFlushState_hdr",
"//src/gpu:GrOpsRenderPass_hdr",
"//src/gpu:GrPipeline_hdr",
"//src/gpu:GrProcessorSet_hdr",
"//src/gpu:GrProcessor_hdr",
"//src/gpu:GrProgramInfo_hdr",
"//src/gpu:GrRecordingContextPriv_hdr",
"//src/gpu:GrResourceProvider_hdr",
"//src/gpu:GrShaderCaps_hdr",
"//src/gpu:GrShaderVar_hdr",
"//src/gpu/glsl:GrGLSLFragmentShaderBuilder_hdr",
"//src/gpu/glsl:GrGLSLProgramDataManager_hdr",
"//src/gpu/glsl:GrGLSLUniformHandler_hdr",
"//src/gpu/glsl:GrGLSLVarying_hdr",
"//src/gpu/glsl:GrGLSLVertexGeoBuilder_hdr",
"//src/gpu/ops:GrDrawOp_hdr",
"//src/gpu/ops:GrOp_hdr",
"//src/gpu/v1:SurfaceDrawContext_v1_hdr",
"//src/gpu/ganesh:GrBuffer_hdr",
"//src/gpu/ganesh:GrCaps_hdr",
"//src/gpu/ganesh:GrDirectContextPriv_hdr",
"//src/gpu/ganesh:GrGeometryProcessor_hdr",
"//src/gpu/ganesh:GrGpuBuffer_hdr",
"//src/gpu/ganesh:GrMemoryPool_hdr",
"//src/gpu/ganesh:GrOpFlushState_hdr",
"//src/gpu/ganesh:GrOpsRenderPass_hdr",
"//src/gpu/ganesh:GrPipeline_hdr",
"//src/gpu/ganesh:GrProcessorSet_hdr",
"//src/gpu/ganesh:GrProcessor_hdr",
"//src/gpu/ganesh:GrProgramInfo_hdr",
"//src/gpu/ganesh:GrRecordingContextPriv_hdr",
"//src/gpu/ganesh:GrResourceProvider_hdr",
"//src/gpu/ganesh:GrShaderCaps_hdr",
"//src/gpu/ganesh:GrShaderVar_hdr",
"//src/gpu/ganesh/glsl:GrGLSLFragmentShaderBuilder_hdr",
"//src/gpu/ganesh/glsl:GrGLSLProgramDataManager_hdr",
"//src/gpu/ganesh/glsl:GrGLSLUniformHandler_hdr",
"//src/gpu/ganesh/glsl:GrGLSLVarying_hdr",
"//src/gpu/ganesh/glsl:GrGLSLVertexGeoBuilder_hdr",
"//src/gpu/ganesh/ops:GrDrawOp_hdr",
"//src/gpu/ganesh/ops:GrOp_hdr",
"//src/gpu/ganesh/v1:SurfaceDrawContext_v1_hdr",
"//tools/gpu:ProxyUtils_hdr",
],
)
@ -4666,12 +4666,12 @@ generated_cc_atom(
"//include/gpu:GrRecordingContext_hdr",
"//src/core:SkCanvasPriv_hdr",
"//src/core:SkGpuBlurUtils_hdr",
"//src/gpu:GrRecordingContextPriv_hdr",
"//src/gpu:GrStyle_hdr",
"//src/gpu:SkGr_hdr",
"//src/gpu/effects:GrBlendFragmentProcessor_hdr",
"//src/gpu/effects:GrTextureEffect_hdr",
"//src/gpu/v1:SurfaceDrawContext_v1_hdr",
"//src/gpu/ganesh:GrRecordingContextPriv_hdr",
"//src/gpu/ganesh:GrStyle_hdr",
"//src/gpu/ganesh:SkGr_hdr",
"//src/gpu/ganesh/effects:GrBlendFragmentProcessor_hdr",
"//src/gpu/ganesh/effects:GrTextureEffect_hdr",
"//src/gpu/ganesh/v1:SurfaceDrawContext_v1_hdr",
"//src/image:SkImage_Base_hdr",
],
)
@ -5065,10 +5065,10 @@ generated_cc_atom(
"//include/gpu:GrRecordingContext_hdr",
"//include/gpu:GrTypes_hdr",
"//include/private:GrTypesPriv_hdr",
"//src/gpu:GrRecordingContextPriv_hdr",
"//src/gpu:GrSamplerState_hdr",
"//src/gpu:GrTextureProxy_hdr",
"//src/gpu:SurfaceContext_hdr",
"//src/gpu/ganesh:GrRecordingContextPriv_hdr",
"//src/gpu/ganesh:GrSamplerState_hdr",
"//src/gpu/ganesh:GrTextureProxy_hdr",
"//src/gpu/ganesh:SurfaceContext_hdr",
"//src/image:SkImage_Base_hdr",
"//src/image:SkImage_Gpu_hdr",
],
@ -5886,13 +5886,13 @@ generated_cc_atom(
"//include/gpu:GrDirectContext_hdr",
"//src/core:SkCanvasPriv_hdr",
"//src/core:SkConvertPixels_hdr",
"//src/gpu:GrDirectContextPriv_hdr",
"//src/gpu:GrPaint_hdr",
"//src/gpu:GrProxyProvider_hdr",
"//src/gpu:GrResourceProvider_hdr",
"//src/gpu:SkGr_hdr",
"//src/gpu/effects:GrTextureEffect_hdr",
"//src/gpu/v1:SurfaceDrawContext_v1_hdr",
"//src/gpu/ganesh:GrDirectContextPriv_hdr",
"//src/gpu/ganesh:GrPaint_hdr",
"//src/gpu/ganesh:GrProxyProvider_hdr",
"//src/gpu/ganesh:GrResourceProvider_hdr",
"//src/gpu/ganesh:SkGr_hdr",
"//src/gpu/ganesh/effects:GrTextureEffect_hdr",
"//src/gpu/ganesh/v1:SurfaceDrawContext_v1_hdr",
"//tools/gpu:ProxyUtils_hdr",
],
)
@ -6199,9 +6199,9 @@ generated_cc_atom(
"//include/core:SkPath_hdr",
"//include/gpu:GrContextOptions_hdr",
"//include/gpu:GrRecordingContext_hdr",
"//src/gpu:GrDirectContextPriv_hdr",
"//src/gpu:GrDrawingManager_hdr",
"//src/gpu:GrRecordingContextPriv_hdr",
"//src/gpu/ganesh:GrDirectContextPriv_hdr",
"//src/gpu/ganesh:GrDrawingManager_hdr",
"//src/gpu/ganesh:GrRecordingContextPriv_hdr",
"//tools:ToolUtils_hdr",
],
)
@ -6247,7 +6247,7 @@ generated_cc_atom(
"//include/core:SkTypeface_hdr",
"//include/effects:SkGradientShader_hdr",
"//include/effects:SkImageFilters_hdr",
"//src/gpu/effects:GrMatrixConvolutionEffect_hdr",
"//src/gpu/ganesh/effects:GrMatrixConvolutionEffect_hdr",
"//tools:ToolUtils_hdr",
],
)
@ -7251,10 +7251,10 @@ generated_cc_atom(
"//include/gpu:GrContextOptions_hdr",
"//include/gpu:GrRecordingContext_hdr",
"//src/core:SkCanvasPriv_hdr",
"//src/gpu:GrDirectContextPriv_hdr",
"//src/gpu:GrDrawingManager_hdr",
"//src/gpu:GrRecordingContextPriv_hdr",
"//src/gpu/v1:SurfaceDrawContext_v1_hdr",
"//src/gpu/ganesh:GrDirectContextPriv_hdr",
"//src/gpu/ganesh:GrDrawingManager_hdr",
"//src/gpu/ganesh:GrRecordingContextPriv_hdr",
"//src/gpu/ganesh/v1:SurfaceDrawContext_v1_hdr",
"//tools:ToolUtils_hdr",
],
)
@ -7393,10 +7393,10 @@ generated_cc_atom(
"//include/gpu:GrDirectContext_hdr",
"//include/gpu:GrTypes_hdr",
"//src/core:SkAutoPixmapStorage_hdr",
"//src/gpu:GrDirectContextPriv_hdr",
"//src/gpu:GrGpu_hdr",
"//src/gpu/gl:GrGLCaps_hdr",
"//src/gpu/gl:GrGLDefines_hdr",
"//src/gpu/ganesh:GrDirectContextPriv_hdr",
"//src/gpu/ganesh:GrGpu_hdr",
"//src/gpu/ganesh/gl:GrGLCaps_hdr",
"//src/gpu/ganesh/gl:GrGLDefines_impl_hdr",
],
)
@ -7527,14 +7527,14 @@ generated_cc_atom(
"//include/effects:SkGradientShader_hdr",
"//include/private:GrTypesPriv_hdr",
"//src/core:SkCanvasPriv_hdr",
"//src/gpu:GrCaps_hdr",
"//src/gpu:GrFragmentProcessor_hdr",
"//src/gpu:GrPaint_hdr",
"//src/gpu/effects:GrPorterDuffXferProcessor_hdr",
"//src/gpu/effects:GrRRectEffect_hdr",
"//src/gpu/ops:FillRectOp_hdr",
"//src/gpu/ops:GrDrawOp_hdr",
"//src/gpu/v1:SurfaceDrawContext_v1_hdr",
"//src/gpu/ganesh:GrCaps_hdr",
"//src/gpu/ganesh:GrFragmentProcessor_hdr",
"//src/gpu/ganesh:GrPaint_hdr",
"//src/gpu/ganesh/effects:GrPorterDuffXferProcessor_hdr",
"//src/gpu/ganesh/effects:GrRRectEffect_hdr",
"//src/gpu/ganesh/ops:FillRectOp_hdr",
"//src/gpu/ganesh/ops:GrDrawOp_hdr",
"//src/gpu/ganesh/v1:SurfaceDrawContext_v1_hdr",
],
)
@ -7636,8 +7636,8 @@ generated_cc_atom(
"//include/effects:SkRuntimeEffect_hdr",
"//include/utils:SkRandom_hdr",
"//src/core:SkRuntimeEffectPriv_hdr",
"//src/gpu:GrCaps_hdr",
"//src/gpu:GrRecordingContextPriv_hdr",
"//src/gpu/ganesh:GrCaps_hdr",
"//src/gpu/ganesh:GrRecordingContextPriv_hdr",
"//tools:Resources_hdr",
"//tools:ToolUtils_hdr",
],
@ -8584,10 +8584,10 @@ generated_cc_atom(
"//include/core:SkRect_hdr",
"//include/core:SkTypes_hdr",
"//src/core:SkCanvasPriv_hdr",
"//src/gpu:GrFragmentProcessor_hdr",
"//src/gpu:SkGr_hdr",
"//src/gpu:SurfaceFillContext_hdr",
"//src/gpu/effects:GrTextureEffect_hdr",
"//src/gpu/ganesh:GrFragmentProcessor_hdr",
"//src/gpu/ganesh:SkGr_hdr",
"//src/gpu/ganesh:SurfaceFillContext_hdr",
"//src/gpu/ganesh/effects:GrTextureEffect_hdr",
"//tools:Resources_hdr",
],
)
@ -8647,22 +8647,22 @@ generated_cc_atom(
deps = [
":gm_hdr",
"//src/core:SkCanvasPriv_hdr",
"//src/gpu:GrCaps_hdr",
"//src/gpu:GrDirectContextPriv_hdr",
"//src/gpu:GrGeometryProcessor_hdr",
"//src/gpu:GrMemoryPool_hdr",
"//src/gpu:GrOpFlushState_hdr",
"//src/gpu:GrOpsRenderPass_hdr",
"//src/gpu:GrPipeline_hdr",
"//src/gpu:GrProgramInfo_hdr",
"//src/gpu:GrRecordingContextPriv_hdr",
"//src/gpu:GrShaderCaps_hdr",
"//src/gpu:GrShaderVar_hdr",
"//src/gpu/glsl:GrGLSLFragmentShaderBuilder_hdr",
"//src/gpu/glsl:GrGLSLVarying_hdr",
"//src/gpu/glsl:GrGLSLVertexGeoBuilder_hdr",
"//src/gpu/ops:GrDrawOp_hdr",
"//src/gpu/v1:SurfaceDrawContext_v1_hdr",
"//src/gpu/ganesh:GrCaps_hdr",
"//src/gpu/ganesh:GrDirectContextPriv_hdr",
"//src/gpu/ganesh:GrGeometryProcessor_hdr",
"//src/gpu/ganesh:GrMemoryPool_hdr",
"//src/gpu/ganesh:GrOpFlushState_hdr",
"//src/gpu/ganesh:GrOpsRenderPass_hdr",
"//src/gpu/ganesh:GrPipeline_hdr",
"//src/gpu/ganesh:GrProgramInfo_hdr",
"//src/gpu/ganesh:GrRecordingContextPriv_hdr",
"//src/gpu/ganesh:GrShaderCaps_hdr",
"//src/gpu/ganesh:GrShaderVar_hdr",
"//src/gpu/ganesh/glsl:GrGLSLFragmentShaderBuilder_hdr",
"//src/gpu/ganesh/glsl:GrGLSLVarying_hdr",
"//src/gpu/ganesh/glsl:GrGLSLVertexGeoBuilder_hdr",
"//src/gpu/ganesh/ops:GrDrawOp_hdr",
"//src/gpu/ganesh/v1:SurfaceDrawContext_v1_hdr",
],
)
@ -8702,12 +8702,12 @@ generated_cc_atom(
"//include/core:SkString_hdr",
"//include/private:SkTArray_hdr",
"//src/core:SkCanvasPriv_hdr",
"//src/gpu:GrDirectContextPriv_hdr",
"//src/gpu:GrProxyProvider_hdr",
"//src/gpu:GrSamplerState_hdr",
"//src/gpu:SkGr_hdr",
"//src/gpu/effects:GrTextureEffect_hdr",
"//src/gpu/v1:SurfaceDrawContext_v1_hdr",
"//src/gpu/ganesh:GrDirectContextPriv_hdr",
"//src/gpu/ganesh:GrProxyProvider_hdr",
"//src/gpu/ganesh:GrSamplerState_hdr",
"//src/gpu/ganesh:SkGr_hdr",
"//src/gpu/ganesh/effects:GrTextureEffect_hdr",
"//src/gpu/ganesh/v1:SurfaceDrawContext_v1_hdr",
"//tools:Resources_hdr",
"//tools/gpu:TestOps_hdr",
],
@ -9203,11 +9203,11 @@ generated_cc_atom(
"//include/gpu:GrDirectContext_hdr",
"//include/utils:SkRandom_hdr",
"//src/core:SkGeometry_hdr",
"//src/gpu:GrCaps_hdr",
"//src/gpu:GrDirectContextPriv_hdr",
"//src/gpu:GrDrawingManager_hdr",
"//src/gpu:GrRecordingContextPriv_hdr",
"//src/gpu/ops:TessellationPathRenderer_hdr",
"//src/gpu/ganesh:GrCaps_hdr",
"//src/gpu/ganesh:GrDirectContextPriv_hdr",
"//src/gpu/ganesh:GrDrawingManager_hdr",
"//src/gpu/ganesh:GrRecordingContextPriv_hdr",
"//src/gpu/ganesh/ops:TessellationPathRenderer_hdr",
],
)
@ -9418,8 +9418,8 @@ generated_cc_atom(
"//src/core:SkAutoPixmapStorage_hdr",
"//src/core:SkConvertPixels_hdr",
"//src/core:SkYUVMath_hdr",
"//src/gpu:GrCaps_hdr",
"//src/gpu:GrRecordingContextPriv_hdr",
"//src/gpu/ganesh:GrCaps_hdr",
"//src/gpu/ganesh:GrRecordingContextPriv_hdr",
"//tools:Resources_hdr",
"//tools:ToolUtils_hdr",
"//tools/gpu:YUVUtils_hdr",
@ -9438,11 +9438,11 @@ generated_cc_atom(
"//include/gpu:GrContextOptions_hdr",
"//include/gpu:GrDirectContext_hdr",
"//include/utils:SkRandom_hdr",
"//src/gpu:GrCaps_hdr",
"//src/gpu:GrDirectContextPriv_hdr",
"//src/gpu:GrDrawingManager_hdr",
"//src/gpu:GrRecordingContextPriv_hdr",
"//src/gpu/ops:TessellationPathRenderer_hdr",
"//src/gpu/ganesh:GrCaps_hdr",
"//src/gpu/ganesh:GrDirectContextPriv_hdr",
"//src/gpu/ganesh:GrDrawingManager_hdr",
"//src/gpu/ganesh:GrRecordingContextPriv_hdr",
"//src/gpu/ganesh/ops:TessellationPathRenderer_hdr",
],
)
@ -9639,12 +9639,12 @@ generated_cc_atom(
"//include/core:SkYUVAInfo_hdr",
"//include/core:SkYUVAPixmaps_hdr",
"//src/core:SkCanvasPriv_hdr",
"//src/gpu:GrSamplerState_hdr",
"//src/gpu:GrTextureProxy_hdr",
"//src/gpu:GrYUVATextureProxies_hdr",
"//src/gpu:SkGr_hdr",
"//src/gpu/effects:GrYUVtoRGBEffect_hdr",
"//src/gpu/v1:SurfaceDrawContext_v1_hdr",
"//src/gpu/ganesh:GrSamplerState_hdr",
"//src/gpu/ganesh:GrTextureProxy_hdr",
"//src/gpu/ganesh:GrYUVATextureProxies_hdr",
"//src/gpu/ganesh:SkGr_hdr",
"//src/gpu/ganesh/effects:GrYUVtoRGBEffect_hdr",
"//src/gpu/ganesh/v1:SurfaceDrawContext_v1_hdr",
],
)

View File

@ -18,10 +18,10 @@
#include "include/core/SkString.h"
#include "include/private/GrTypesPriv.h"
#include "src/core/SkCanvasPriv.h"
#include "src/gpu/GrFragmentProcessor.h"
#include "src/gpu/GrPaint.h"
#include "src/gpu/effects/GrPorterDuffXferProcessor.h"
#include "src/gpu/v1/SurfaceDrawContext_v1.h"
#include "src/gpu/ganesh/GrFragmentProcessor.h"
#include "src/gpu/ganesh/GrPaint.h"
#include "src/gpu/ganesh/effects/GrPorterDuffXferProcessor.h"
#include "src/gpu/ganesh/v1/SurfaceDrawContext_v1.h"
#include "tools/gpu/TestOps.h"
#include <memory>

View File

@ -10,21 +10,21 @@
#include "include/core/SkRect.h"
#include "include/gpu/GrRecordingContext.h"
#include "src/core/SkCanvasPriv.h"
#include "src/gpu/GrBuffer.h"
#include "src/gpu/GrGeometryProcessor.h"
#include "src/gpu/GrGpuBuffer.h"
#include "src/gpu/GrOpFlushState.h"
#include "src/gpu/GrProcessor.h"
#include "src/gpu/GrProcessorSet.h"
#include "src/gpu/GrProgramInfo.h"
#include "src/gpu/GrResourceProvider.h"
#include "src/gpu/GrShaderVar.h"
#include "src/gpu/KeyBuilder.h"
#include "src/gpu/glsl/GrGLSLFragmentShaderBuilder.h"
#include "src/gpu/glsl/GrGLSLVertexGeoBuilder.h"
#include "src/gpu/ops/GrDrawOp.h"
#include "src/gpu/ops/GrOp.h"
#include "src/gpu/v1/SurfaceDrawContext_v1.h"
#include "src/gpu/ganesh/GrBuffer.h"
#include "src/gpu/ganesh/GrGeometryProcessor.h"
#include "src/gpu/ganesh/GrGpuBuffer.h"
#include "src/gpu/ganesh/GrOpFlushState.h"
#include "src/gpu/ganesh/GrProcessor.h"
#include "src/gpu/ganesh/GrProcessorSet.h"
#include "src/gpu/ganesh/GrProgramInfo.h"
#include "src/gpu/ganesh/GrResourceProvider.h"
#include "src/gpu/ganesh/GrShaderVar.h"
#include "src/gpu/ganesh/glsl/GrGLSLFragmentShaderBuilder.h"
#include "src/gpu/ganesh/glsl/GrGLSLVertexGeoBuilder.h"
#include "src/gpu/ganesh/ops/GrDrawOp.h"
#include "src/gpu/ganesh/ops/GrOp.h"
#include "src/gpu/ganesh/v1/SurfaceDrawContext_v1.h"
#include "tools/gpu/ProxyUtils.h"
#include <memory>

View File

@ -11,8 +11,8 @@
#include "include/gpu/GrDirectContext.h"
#include "include/gpu/GrRecordingContext.h"
#include "src/core/SkCompressedDataUtils.h"
#include "src/gpu/GrCaps.h"
#include "src/gpu/GrImageContextPriv.h"
#include "src/gpu/ganesh/GrCaps.h"
#include "src/gpu/ganesh/GrImageContextPriv.h"
#include "src/image/SkImage_Base.h"
#include "src/image/SkImage_GpuBase.h"
#include "tools/gpu/ProxyUtils.h"

View File

@ -27,26 +27,26 @@
#include "src/core/SkCanvasPriv.h"
#include "src/core/SkGeometry.h"
#include "src/core/SkPointPriv.h"
#include "src/gpu/GrCaps.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/GrGeometryProcessor.h"
#include "src/gpu/GrMemoryPool.h"
#include "src/gpu/GrOpFlushState.h"
#include "src/gpu/GrOpsRenderPass.h"
#include "src/gpu/GrPaint.h"
#include "src/gpu/GrProcessorAnalysis.h"
#include "src/gpu/GrProcessorSet.h"
#include "src/gpu/GrProgramInfo.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/GrUserStencilSettings.h"
#include "src/gpu/effects/GrBezierEffect.h"
#include "src/gpu/effects/GrPorterDuffXferProcessor.h"
#include "src/gpu/geometry/GrPathUtils.h"
#include "src/gpu/ops/GrDrawOp.h"
#include "src/gpu/ops/GrMeshDrawOp.h"
#include "src/gpu/ops/GrOp.h"
#include "src/gpu/ops/GrSimpleMeshDrawOpHelper.h"
#include "src/gpu/v1/SurfaceDrawContext_v1.h"
#include "src/gpu/ganesh/GrCaps.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrGeometryProcessor.h"
#include "src/gpu/ganesh/GrMemoryPool.h"
#include "src/gpu/ganesh/GrOpFlushState.h"
#include "src/gpu/ganesh/GrOpsRenderPass.h"
#include "src/gpu/ganesh/GrPaint.h"
#include "src/gpu/ganesh/GrProcessorAnalysis.h"
#include "src/gpu/ganesh/GrProcessorSet.h"
#include "src/gpu/ganesh/GrProgramInfo.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/GrUserStencilSettings.h"
#include "src/gpu/ganesh/effects/GrBezierEffect.h"
#include "src/gpu/ganesh/effects/GrPorterDuffXferProcessor.h"
#include "src/gpu/ganesh/geometry/GrPathUtils.h"
#include "src/gpu/ganesh/ops/GrDrawOp.h"
#include "src/gpu/ganesh/ops/GrMeshDrawOp.h"
#include "src/gpu/ganesh/ops/GrOp.h"
#include "src/gpu/ganesh/ops/GrSimpleMeshDrawOpHelper.h"
#include "src/gpu/ganesh/v1/SurfaceDrawContext_v1.h"
#include <memory>
#include <utility>

View File

@ -19,14 +19,14 @@
#include "include/core/SkTypes.h"
#include "include/private/GrTypesPriv.h"
#include "src/core/SkCanvasPriv.h"
#include "src/gpu/GrCaps.h"
#include "src/gpu/GrFragmentProcessor.h"
#include "src/gpu/GrPaint.h"
#include "src/gpu/effects/GrPorterDuffXferProcessor.h"
#include "src/gpu/effects/GrRRectEffect.h"
#include "src/gpu/ops/FillRectOp.h"
#include "src/gpu/ops/GrDrawOp.h"
#include "src/gpu/v1/SurfaceDrawContext_v1.h"
#include "src/gpu/ganesh/GrCaps.h"
#include "src/gpu/ganesh/GrFragmentProcessor.h"
#include "src/gpu/ganesh/GrPaint.h"
#include "src/gpu/ganesh/effects/GrPorterDuffXferProcessor.h"
#include "src/gpu/ganesh/effects/GrRRectEffect.h"
#include "src/gpu/ganesh/ops/FillRectOp.h"
#include "src/gpu/ganesh/ops/GrDrawOp.h"
#include "src/gpu/ganesh/v1/SurfaceDrawContext_v1.h"
#include "tools/ToolUtils.h"
#include <memory>

View File

@ -19,8 +19,8 @@
#include "include/core/SkTileMode.h"
#include "include/core/SkTypes.h"
#include "include/gpu/GrRecordingContext.h"
#include "src/gpu/GrCaps.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/GrCaps.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
namespace skiagm {

View File

@ -32,7 +32,7 @@
#include "include/private/SkTo.h"
#include "src/core/SkBlurMask.h"
#include "src/core/SkMask.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
#include "tools/timer/TimeUtils.h"
#include <vector>

View File

@ -12,9 +12,9 @@
#include "include/core/SkRect.h"
#include "include/private/SkColorData.h"
#include "src/core/SkCanvasPriv.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/SurfaceFillContext.h"
#include "src/gpu/Swizzle.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/SurfaceFillContext.h"
namespace skiagm {

View File

@ -21,32 +21,32 @@
#include "include/private/GrTypesPriv.h"
#include "include/private/SkColorData.h"
#include "src/core/SkCanvasPriv.h"
#include "src/gpu/GrBuffer.h"
#include "src/gpu/GrCaps.h"
#include "src/gpu/GrColorSpaceXform.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/GrGeometryProcessor.h"
#include "src/gpu/GrGpuBuffer.h"
#include "src/gpu/GrMemoryPool.h"
#include "src/gpu/GrOpFlushState.h"
#include "src/gpu/GrOpsRenderPass.h"
#include "src/gpu/GrPipeline.h"
#include "src/gpu/GrProcessor.h"
#include "src/gpu/GrProcessorSet.h"
#include "src/gpu/GrProgramInfo.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/GrResourceProvider.h"
#include "src/gpu/GrSamplerState.h"
#include "src/gpu/GrShaderCaps.h"
#include "src/gpu/GrShaderVar.h"
#include "src/gpu/GrSurfaceProxy.h"
#include "src/gpu/GrTextureProxy.h"
#include "src/gpu/KeyBuilder.h"
#include "src/gpu/glsl/GrGLSLFragmentShaderBuilder.h"
#include "src/gpu/glsl/GrGLSLVarying.h"
#include "src/gpu/ops/GrDrawOp.h"
#include "src/gpu/ops/GrOp.h"
#include "src/gpu/v1/SurfaceDrawContext_v1.h"
#include "src/gpu/ganesh/GrBuffer.h"
#include "src/gpu/ganesh/GrCaps.h"
#include "src/gpu/ganesh/GrColorSpaceXform.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrGeometryProcessor.h"
#include "src/gpu/ganesh/GrGpuBuffer.h"
#include "src/gpu/ganesh/GrMemoryPool.h"
#include "src/gpu/ganesh/GrOpFlushState.h"
#include "src/gpu/ganesh/GrOpsRenderPass.h"
#include "src/gpu/ganesh/GrPipeline.h"
#include "src/gpu/ganesh/GrProcessor.h"
#include "src/gpu/ganesh/GrProcessorSet.h"
#include "src/gpu/ganesh/GrProgramInfo.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/GrResourceProvider.h"
#include "src/gpu/ganesh/GrSamplerState.h"
#include "src/gpu/ganesh/GrShaderCaps.h"
#include "src/gpu/ganesh/GrShaderVar.h"
#include "src/gpu/ganesh/GrSurfaceProxy.h"
#include "src/gpu/ganesh/GrTextureProxy.h"
#include "src/gpu/ganesh/glsl/GrGLSLFragmentShaderBuilder.h"
#include "src/gpu/ganesh/glsl/GrGLSLVarying.h"
#include "src/gpu/ganesh/ops/GrDrawOp.h"
#include "src/gpu/ganesh/ops/GrOp.h"
#include "src/gpu/ganesh/v1/SurfaceDrawContext_v1.h"
#include "tools/gpu/ProxyUtils.h"
#include <memory>

View File

@ -25,9 +25,9 @@
#include "include/gpu/GrRecordingContext.h"
#include "src/core/SkCompressedDataUtils.h"
#include "src/core/SkMipmap.h"
#include "src/gpu/GrDataUtils.h"
#include "src/gpu/GrImageContextPriv.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/GrDataUtils.h"
#include "src/gpu/ganesh/GrImageContextPriv.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
#include "src/image/SkImage_Base.h"
#include "src/image/SkImage_GpuBase.h"
#include "third_party/etc1/etc1.h"

View File

@ -30,12 +30,12 @@
#include "include/private/SkColorData.h"
#include "src/core/SkCanvasPriv.h"
#include "src/core/SkMatrixProvider.h"
#include "src/gpu/GrColor.h"
#include "src/gpu/GrFragmentProcessor.h"
#include "src/gpu/GrPaint.h"
#include "src/gpu/SkGr.h"
#include "src/gpu/ops/GrOp.h"
#include "src/gpu/v1/SurfaceDrawContext_v1.h"
#include "src/gpu/ganesh/GrColor.h"
#include "src/gpu/ganesh/GrFragmentProcessor.h"
#include "src/gpu/ganesh/GrPaint.h"
#include "src/gpu/ganesh/SkGr.h"
#include "src/gpu/ganesh/ops/GrOp.h"
#include "src/gpu/ganesh/v1/SurfaceDrawContext_v1.h"
#include "tools/ToolUtils.h"
#include "tools/gpu/TestOps.h"

View File

@ -20,11 +20,11 @@
#include "include/core/SkString.h"
#include "include/private/GrTypesPriv.h"
#include "src/core/SkCanvasPriv.h"
#include "src/gpu/GrFragmentProcessor.h"
#include "src/gpu/GrPaint.h"
#include "src/gpu/effects/GrConvexPolyEffect.h"
#include "src/gpu/effects/GrPorterDuffXferProcessor.h"
#include "src/gpu/v1/SurfaceDrawContext_v1.h"
#include "src/gpu/ganesh/GrFragmentProcessor.h"
#include "src/gpu/ganesh/GrPaint.h"
#include "src/gpu/ganesh/effects/GrConvexPolyEffect.h"
#include "src/gpu/ganesh/effects/GrPorterDuffXferProcessor.h"
#include "src/gpu/ganesh/v1/SurfaceDrawContext_v1.h"
#include "tools/gpu/TestOps.h"
#include <memory>

View File

@ -13,12 +13,12 @@
#include "include/core/SkTypes.h"
#include "include/effects/SkImageFilters.h"
#include "src/core/SkCanvasPriv.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/GrFragmentProcessor.h"
#include "src/gpu/GrStyle.h"
#include "src/gpu/SkGr.h"
#include "src/gpu/glsl/GrGLSLFragmentShaderBuilder.h"
#include "src/gpu/v1/SurfaceDrawContext_v1.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrFragmentProcessor.h"
#include "src/gpu/ganesh/GrStyle.h"
#include "src/gpu/ganesh/SkGr.h"
#include "src/gpu/ganesh/glsl/GrGLSLFragmentShaderBuilder.h"
#include "src/gpu/ganesh/v1/SurfaceDrawContext_v1.h"
#include "tools/Resources.h"
#include "tools/ToolUtils.h"

View File

@ -26,9 +26,9 @@
#include "include/private/GrTypesPriv.h"
#include "src/core/SkCanvasPriv.h"
#include "src/core/SkMatrixProvider.h"
#include "src/gpu/GrPaint.h"
#include "src/gpu/SkGr.h"
#include "src/gpu/v1/SurfaceDrawContext_v1.h"
#include "src/gpu/ganesh/GrPaint.h"
#include "src/gpu/ganesh/SkGr.h"
#include "src/gpu/ganesh/v1/SurfaceDrawContext_v1.h"
#include "tools/ToolUtils.h"
#include <utility>

View File

@ -9,8 +9,8 @@
#include "include/effects/SkRuntimeEffect.h"
#include "include/sksl/DSL.h"
#include "src/core/SkCanvasPriv.h"
#include "src/gpu/SurfaceFillContext.h"
#include "src/gpu/glsl/GrGLSLFragmentShaderBuilder.h"
#include "src/gpu/ganesh/SurfaceFillContext.h"
#include "src/gpu/ganesh/glsl/GrGLSLFragmentShaderBuilder.h"
#include "src/sksl/dsl/priv/DSLFPs.h"
#include "src/sksl/dsl/priv/DSLWriter.h"
#include "src/sksl/ir/SkSLVariable.h"

View File

@ -13,9 +13,9 @@
#include "include/gpu/GrRecordingContext.h"
#include "src/core/SkCompressedDataUtils.h"
#include "src/core/SkMipmap.h"
#include "src/gpu/GrImageContextPriv.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/gl/GrGLDefines.h"
#include "src/gpu/ganesh/GrImageContextPriv.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/gl/GrGLDefines_impl.h"
#include "src/image/SkImage_Base.h"
#include "src/image/SkImage_GpuBase.h"
#include "tools/gpu/ProxyUtils.h"

View File

@ -27,8 +27,8 @@
#include "include/gpu/GrRecordingContext.h"
#include "include/gpu/GrTypes.h"
#include "include/private/SkTArray.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/GrPixmap.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrPixmap.h"
#include "src/image/SkImage_Base.h"
#include "src/image/SkImage_Gpu.h"
#include "tools/ToolUtils.h"

View File

@ -23,7 +23,7 @@
#include "include/gpu/GrContextOptions.h"
#include "include/gpu/GrDirectContext.h"
#include "include/private/GrTypesPriv.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "tools/ToolUtils.h"
static SkScalar draw_string(SkCanvas* canvas, const SkString& text, SkScalar x,

View File

@ -33,7 +33,7 @@
#include "include/gpu/GrRecordingContext.h"
#include "include/private/GrTypesPriv.h"
#include "include/private/SkTemplates.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "tools/ToolUtils.h"
static sk_sp<SkTextBlob> make_blob(const SkString& text, const SkFont& font) {

View File

@ -10,13 +10,13 @@
#include "include/core/SkFont.h"
#include "include/effects/SkRuntimeEffect.h"
#include "src/core/SkCanvasPriv.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/GrPaint.h"
#include "src/gpu/SkGr.h"
#include "src/gpu/effects/GrMatrixEffect.h"
#include "src/gpu/effects/GrTextureEffect.h"
#include "src/gpu/glsl/GrGLSLFragmentShaderBuilder.h"
#include "src/gpu/v1/SurfaceDrawContext_v1.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrPaint.h"
#include "src/gpu/ganesh/SkGr.h"
#include "src/gpu/ganesh/effects/GrMatrixEffect.h"
#include "src/gpu/ganesh/effects/GrTextureEffect.h"
#include "src/gpu/ganesh/glsl/GrGLSLFragmentShaderBuilder.h"
#include "src/gpu/ganesh/v1/SurfaceDrawContext_v1.h"
#include "tools/ToolUtils.h"
namespace {

View File

@ -19,15 +19,15 @@
#include "include/core/SkTileMode.h"
#include "include/core/SkTypes.h"
#include "src/core/SkCanvasPriv.h"
#include "src/gpu/GrCaps.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/GrFragmentProcessor.h"
#include "src/gpu/SkGr.h"
#include "src/gpu/SurfaceFillContext.h"
#include "src/gpu/effects/GrRRectEffect.h"
#include "src/gpu/effects/GrSkSLFP.h"
#include "src/gpu/effects/GrTextureEffect.h"
#include "src/gpu/glsl/GrGLSLFragmentShaderBuilder.h"
#include "src/gpu/ganesh/GrCaps.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrFragmentProcessor.h"
#include "src/gpu/ganesh/SkGr.h"
#include "src/gpu/ganesh/SurfaceFillContext.h"
#include "src/gpu/ganesh/effects/GrRRectEffect.h"
#include "src/gpu/ganesh/effects/GrSkSLFP.h"
#include "src/gpu/ganesh/effects/GrTextureEffect.h"
#include "src/gpu/ganesh/glsl/GrGLSLFragmentShaderBuilder.h"
#include "tools/Resources.h"
#include "tools/ToolUtils.h"

View File

@ -17,30 +17,30 @@
#include "include/gpu/GrRecordingContext.h"
#include "include/private/GrTypesPriv.h"
#include "src/core/SkCanvasPriv.h"
#include "src/gpu/GrBuffer.h"
#include "src/gpu/GrCaps.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/GrGeometryProcessor.h"
#include "src/gpu/GrGpuBuffer.h"
#include "src/gpu/GrMemoryPool.h"
#include "src/gpu/GrOpFlushState.h"
#include "src/gpu/GrOpsRenderPass.h"
#include "src/gpu/GrPipeline.h"
#include "src/gpu/GrProcessor.h"
#include "src/gpu/GrProcessorSet.h"
#include "src/gpu/GrProgramInfo.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/GrResourceProvider.h"
#include "src/gpu/GrShaderCaps.h"
#include "src/gpu/GrShaderVar.h"
#include "src/gpu/glsl/GrGLSLFragmentShaderBuilder.h"
#include "src/gpu/glsl/GrGLSLProgramDataManager.h"
#include "src/gpu/glsl/GrGLSLUniformHandler.h"
#include "src/gpu/glsl/GrGLSLVarying.h"
#include "src/gpu/glsl/GrGLSLVertexGeoBuilder.h"
#include "src/gpu/ops/GrDrawOp.h"
#include "src/gpu/ops/GrOp.h"
#include "src/gpu/v1/SurfaceDrawContext_v1.h"
#include "src/gpu/ganesh/GrBuffer.h"
#include "src/gpu/ganesh/GrCaps.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrGeometryProcessor.h"
#include "src/gpu/ganesh/GrGpuBuffer.h"
#include "src/gpu/ganesh/GrMemoryPool.h"
#include "src/gpu/ganesh/GrOpFlushState.h"
#include "src/gpu/ganesh/GrOpsRenderPass.h"
#include "src/gpu/ganesh/GrPipeline.h"
#include "src/gpu/ganesh/GrProcessor.h"
#include "src/gpu/ganesh/GrProcessorSet.h"
#include "src/gpu/ganesh/GrProgramInfo.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/GrResourceProvider.h"
#include "src/gpu/ganesh/GrShaderCaps.h"
#include "src/gpu/ganesh/GrShaderVar.h"
#include "src/gpu/ganesh/glsl/GrGLSLFragmentShaderBuilder.h"
#include "src/gpu/ganesh/glsl/GrGLSLProgramDataManager.h"
#include "src/gpu/ganesh/glsl/GrGLSLUniformHandler.h"
#include "src/gpu/ganesh/glsl/GrGLSLVarying.h"
#include "src/gpu/ganesh/glsl/GrGLSLVertexGeoBuilder.h"
#include "src/gpu/ganesh/ops/GrDrawOp.h"
#include "src/gpu/ganesh/ops/GrOp.h"
#include "src/gpu/ganesh/v1/SurfaceDrawContext_v1.h"
#include "tools/gpu/ProxyUtils.h"
#include <memory>

View File

@ -12,12 +12,12 @@
#include "include/gpu/GrRecordingContext.h"
#include "src/core/SkCanvasPriv.h"
#include "src/core/SkGpuBlurUtils.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/GrStyle.h"
#include "src/gpu/SkGr.h"
#include "src/gpu/effects/GrBlendFragmentProcessor.h"
#include "src/gpu/effects/GrTextureEffect.h"
#include "src/gpu/v1/SurfaceDrawContext_v1.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/GrStyle.h"
#include "src/gpu/ganesh/SkGr.h"
#include "src/gpu/ganesh/effects/GrBlendFragmentProcessor.h"
#include "src/gpu/ganesh/effects/GrTextureEffect.h"
#include "src/gpu/ganesh/v1/SurfaceDrawContext_v1.h"
#include "src/image/SkImage_Base.h"
namespace {

View File

@ -29,10 +29,10 @@
#include "include/gpu/GrRecordingContext.h"
#include "include/gpu/GrTypes.h"
#include "include/private/GrTypesPriv.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/GrSamplerState.h"
#include "src/gpu/GrTextureProxy.h"
#include "src/gpu/SurfaceContext.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/GrSamplerState.h"
#include "src/gpu/ganesh/GrTextureProxy.h"
#include "src/gpu/ganesh/SurfaceContext.h"
#include "src/image/SkImage_Base.h"
#include "src/image/SkImage_Gpu.h"

View File

@ -15,13 +15,13 @@
#include "include/gpu/GrDirectContext.h"
#include "src/core/SkCanvasPriv.h"
#include "src/core/SkConvertPixels.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/GrPaint.h"
#include "src/gpu/GrProxyProvider.h"
#include "src/gpu/GrResourceProvider.h"
#include "src/gpu/SkGr.h"
#include "src/gpu/effects/GrTextureEffect.h"
#include "src/gpu/v1/SurfaceDrawContext_v1.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrPaint.h"
#include "src/gpu/ganesh/GrProxyProvider.h"
#include "src/gpu/ganesh/GrResourceProvider.h"
#include "src/gpu/ganesh/SkGr.h"
#include "src/gpu/ganesh/effects/GrTextureEffect.h"
#include "src/gpu/ganesh/v1/SurfaceDrawContext_v1.h"
#include "tools/gpu/ProxyUtils.h"
static GrSurfaceProxyView create_view(GrDirectContext* dContext,

View File

@ -10,9 +10,9 @@
#include "include/core/SkPath.h"
#include "include/gpu/GrContextOptions.h"
#include "include/gpu/GrRecordingContext.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/GrDrawingManager.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrDrawingManager.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
#include "tools/ToolUtils.h"
namespace skiagm {

View File

@ -22,7 +22,7 @@
#include "include/core/SkTypeface.h"
#include "include/effects/SkGradientShader.h"
#include "include/effects/SkImageFilters.h"
#include "src/gpu/effects/GrMatrixConvolutionEffect.h"
#include "src/gpu/ganesh/effects/GrMatrixConvolutionEffect.h"
#include "tools/ToolUtils.h"
#include <vector>

View File

@ -11,10 +11,10 @@
#include "include/gpu/GrContextOptions.h"
#include "include/gpu/GrRecordingContext.h"
#include "src/core/SkCanvasPriv.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/GrDrawingManager.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/v1/SurfaceDrawContext_v1.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrDrawingManager.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/v1/SurfaceDrawContext_v1.h"
#include "tools/ToolUtils.h"
namespace skiagm {

View File

@ -30,10 +30,10 @@
#include "include/gpu/GrDirectContext.h"
#include "include/gpu/GrTypes.h"
#include "src/core/SkAutoPixmapStorage.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/GrGpu.h"
#include "src/gpu/gl/GrGLCaps.h"
#include "src/gpu/gl/GrGLDefines.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrGpu.h"
#include "src/gpu/ganesh/gl/GrGLCaps.h"
#include "src/gpu/ganesh/gl/GrGLDefines_impl.h"
#include <algorithm>
#include <cstdint>

View File

@ -20,14 +20,14 @@
#include "include/effects/SkGradientShader.h"
#include "include/private/GrTypesPriv.h"
#include "src/core/SkCanvasPriv.h"
#include "src/gpu/GrCaps.h"
#include "src/gpu/GrFragmentProcessor.h"
#include "src/gpu/GrPaint.h"
#include "src/gpu/effects/GrPorterDuffXferProcessor.h"
#include "src/gpu/effects/GrRRectEffect.h"
#include "src/gpu/ops/FillRectOp.h"
#include "src/gpu/ops/GrDrawOp.h"
#include "src/gpu/v1/SurfaceDrawContext_v1.h"
#include "src/gpu/ganesh/GrCaps.h"
#include "src/gpu/ganesh/GrFragmentProcessor.h"
#include "src/gpu/ganesh/GrPaint.h"
#include "src/gpu/ganesh/effects/GrPorterDuffXferProcessor.h"
#include "src/gpu/ganesh/effects/GrRRectEffect.h"
#include "src/gpu/ganesh/ops/FillRectOp.h"
#include "src/gpu/ganesh/ops/GrDrawOp.h"
#include "src/gpu/ganesh/v1/SurfaceDrawContext_v1.h"
#include <memory>
#include <utility>

View File

@ -19,8 +19,8 @@
#include "include/effects/SkRuntimeEffect.h"
#include "include/utils/SkRandom.h"
#include "src/core/SkRuntimeEffectPriv.h"
#include "src/gpu/GrCaps.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/GrCaps.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
#include "tools/Resources.h"
#include "tools/ToolUtils.h"

View File

@ -13,10 +13,10 @@
#include "include/core/SkRect.h"
#include "include/core/SkTypes.h"
#include "src/core/SkCanvasPriv.h"
#include "src/gpu/GrFragmentProcessor.h"
#include "src/gpu/SkGr.h"
#include "src/gpu/SurfaceFillContext.h"
#include "src/gpu/effects/GrTextureEffect.h"
#include "src/gpu/ganesh/GrFragmentProcessor.h"
#include "src/gpu/ganesh/SkGr.h"
#include "src/gpu/ganesh/SurfaceFillContext.h"
#include "src/gpu/ganesh/effects/GrTextureEffect.h"
#include "tools/Resources.h"
DEF_SIMPLE_GPU_GM(swizzle, rContext, canvas, 512, 512) {

View File

@ -8,22 +8,22 @@
#include "gm/gm.h"
#include "src/core/SkCanvasPriv.h"
#include "src/gpu/GrCaps.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/GrGeometryProcessor.h"
#include "src/gpu/GrMemoryPool.h"
#include "src/gpu/GrOpFlushState.h"
#include "src/gpu/GrOpsRenderPass.h"
#include "src/gpu/GrPipeline.h"
#include "src/gpu/GrProgramInfo.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/GrShaderCaps.h"
#include "src/gpu/GrShaderVar.h"
#include "src/gpu/glsl/GrGLSLFragmentShaderBuilder.h"
#include "src/gpu/glsl/GrGLSLVarying.h"
#include "src/gpu/glsl/GrGLSLVertexGeoBuilder.h"
#include "src/gpu/ops/GrDrawOp.h"
#include "src/gpu/v1/SurfaceDrawContext_v1.h"
#include "src/gpu/ganesh/GrCaps.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrGeometryProcessor.h"
#include "src/gpu/ganesh/GrMemoryPool.h"
#include "src/gpu/ganesh/GrOpFlushState.h"
#include "src/gpu/ganesh/GrOpsRenderPass.h"
#include "src/gpu/ganesh/GrPipeline.h"
#include "src/gpu/ganesh/GrProgramInfo.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/GrShaderCaps.h"
#include "src/gpu/ganesh/GrShaderVar.h"
#include "src/gpu/ganesh/glsl/GrGLSLFragmentShaderBuilder.h"
#include "src/gpu/ganesh/glsl/GrGLSLVarying.h"
#include "src/gpu/ganesh/glsl/GrGLSLVertexGeoBuilder.h"
#include "src/gpu/ganesh/ops/GrDrawOp.h"
#include "src/gpu/ganesh/v1/SurfaceDrawContext_v1.h"
namespace skiagm {

View File

@ -18,12 +18,12 @@
#include "include/core/SkString.h"
#include "include/private/SkTArray.h"
#include "src/core/SkCanvasPriv.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/GrProxyProvider.h"
#include "src/gpu/GrSamplerState.h"
#include "src/gpu/SkGr.h"
#include "src/gpu/effects/GrTextureEffect.h"
#include "src/gpu/v1/SurfaceDrawContext_v1.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrProxyProvider.h"
#include "src/gpu/ganesh/GrSamplerState.h"
#include "src/gpu/ganesh/SkGr.h"
#include "src/gpu/ganesh/effects/GrTextureEffect.h"
#include "src/gpu/ganesh/v1/SurfaceDrawContext_v1.h"
#include "tools/Resources.h"
#include "tools/gpu/TestOps.h"

View File

@ -20,10 +20,10 @@
#include "include/gpu/GrDirectContext.h"
#include "include/utils/SkRandom.h"
#include "src/core/SkGeometry.h"
#include "src/gpu/GrCaps.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/GrDrawingManager.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/GrCaps.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrDrawingManager.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
static constexpr float kStrokeWidth = 30;
static constexpr int kCellSize = 200;
@ -182,7 +182,7 @@ DEF_SIMPLE_GM(trickycubicstrokes_roundcaps, canvas, kTestWidth, kTestHeight) {
}
#if SK_GPU_V1
#include "src/gpu/ops/TessellationPathRenderer.h"
#include "src/gpu/ganesh/ops/TessellationPathRenderer.h"
class TrickyCubicStrokes_tess_segs_5 : public skiagm::GM {
SkString onShortName() override {

View File

@ -45,8 +45,8 @@
#include "include/utils/SkTextUtils.h"
#include "src/core/SkConvertPixels.h"
#include "src/core/SkYUVMath.h"
#include "src/gpu/GrCaps.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/GrCaps.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
#include "tools/ToolUtils.h"
#include "tools/gpu/YUVUtils.h"

View File

@ -12,11 +12,11 @@
#include "include/gpu/GrContextOptions.h"
#include "include/gpu/GrDirectContext.h"
#include "include/utils/SkRandom.h"
#include "src/gpu/GrCaps.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/GrDrawingManager.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/ops/TessellationPathRenderer.h"
#include "src/gpu/ganesh/GrCaps.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrDrawingManager.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/ops/TessellationPathRenderer.h"
static constexpr float kStrokeWidth = 100;
static constexpr int kTestWidth = 120 * 4;

View File

@ -19,12 +19,12 @@
#include "include/core/SkYUVAInfo.h"
#include "include/core/SkYUVAPixmaps.h"
#include "src/core/SkCanvasPriv.h"
#include "src/gpu/GrSamplerState.h"
#include "src/gpu/GrTextureProxy.h"
#include "src/gpu/GrYUVATextureProxies.h"
#include "src/gpu/SkGr.h"
#include "src/gpu/effects/GrYUVtoRGBEffect.h"
#include "src/gpu/v1/SurfaceDrawContext_v1.h"
#include "src/gpu/ganesh/GrSamplerState.h"
#include "src/gpu/ganesh/GrTextureProxy.h"
#include "src/gpu/ganesh/GrYUVATextureProxies.h"
#include "src/gpu/ganesh/SkGr.h"
#include "src/gpu/ganesh/effects/GrYUVtoRGBEffect.h"
#include "src/gpu/ganesh/v1/SurfaceDrawContext_v1.h"
#include <memory>
#include <utility>

1386
gn/gpu.gni

File diff suppressed because it is too large Load Diff

View File

@ -246,7 +246,7 @@ skslc_deps = [
"$_src/core/SkThreadID.cpp",
"$_src/core/SkUtils.cpp",
"$_src/core/SkVM.cpp",
"$_src/gpu/GrMemoryPool.cpp",
"$_src/gpu/ganesh/GrMemoryPool.cpp",
"$_src/ports/SkMemory_malloc.cpp",
"$_src/ports/SkOSFile_stdio.cpp",
"$_src/utils/SkJSON.cpp",

View File

@ -67,10 +67,10 @@
#include "include/gpu/GrDirectContext.h"
#include "include/gpu/gl/GrGLInterface.h"
#include "include/gpu/gl/GrGLTypes.h"
#include "src/gpu/GrProxyProvider.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/RefCntedCallback.h"
#include "src/gpu/gl/GrGLDefines.h"
#include "src/gpu/ganesh/GrProxyProvider.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/gl/GrGLDefines_impl.h"
#include <webgl/webgl1.h>
#endif

View File

@ -209,13 +209,13 @@ BASE_SRCS_ALL = struct(
"src/codec/*",
"src/device/xps/*", # Windows-only. Move to ports?
"src/doc/*_XPS.cpp", # Windows-only. Move to ports?
"src/gpu/gl/android/*",
"src/gpu/gl/egl/*",
"src/gpu/gl/glfw/*",
"src/gpu/gl/glx/*",
"src/gpu/gl/iOS/*",
"src/gpu/gl/mac/*",
"src/gpu/gl/win/*",
"src/gpu/ganesh/gl/android/*",
"src/gpu/ganesh/gl/egl/*",
"src/gpu/ganesh/gl/glfw/*",
"src/gpu/ganesh/gl/glx/*",
"src/gpu/ganesh/gl/iOS/*",
"src/gpu/ganesh/gl/mac/*",
"src/gpu/ganesh/gl/win/*",
"src/opts/**/*",
"src/ports/**/*",
"src/utils/android/**/*",
@ -223,7 +223,7 @@ BASE_SRCS_ALL = struct(
"src/utils/win/**/*",
# Exclude multiple definitions.
"src/gpu/gl/GrGLMakeNativeInterface_none.cpp",
"src/gpu/ganesh/gl/GrGLMakeNativeInterface_none.cpp",
"src/pdf/SkDocument_PDF_None.cpp", # We use src/pdf/SkPDFDocument.cpp.
# Exclude files that don't compile everywhere.
@ -231,20 +231,20 @@ BASE_SRCS_ALL = struct(
"src/xml/**/*", # Avoid dragging in expat when not needed.
# Exclude all GL specific files
"src/gpu/gl/*",
"src/gpu/gl/builders/*",
"src/gpu/ganesh/gl/*",
"src/gpu/ganesh/gl/builders/*",
# Exclude all WebGL specific files
"src/gpu/gl/webgl/*",
"src/gpu/ganesh/gl/webgl/*",
# Currently exclude all vulkan specific files
"src/gpu/vk/*",
"src/gpu/ganesh/vk/*",
# Currently exclude all Direct3D specific files
"src/gpu/d3d/*",
"src/gpu/ganesh/d3d/*",
# Currently exclude all Dawn-specific files
"src/gpu/dawn/*",
"src/gpu/ganesh/dawn/*",
# Defines main.
"tools/skslc/Main.cpp",
@ -268,24 +268,24 @@ def codec_srcs(limited):
GL_SRCS_UNIX = struct(
include = [
"src/gpu/gl/*.cpp",
"src/gpu/gl/*.h",
"src/gpu/gl/builders/*.cpp",
"src/gpu/gl/builders/*.h",
"src/gpu/ganesh/gl/*.cpp",
"src/gpu/ganesh/gl/*.h",
"src/gpu/ganesh/gl/builders/*.cpp",
"src/gpu/ganesh/gl/builders/*.h",
],
exclude = [],
)
GL_SRCS_UNIX_EGL = struct(
include = [
"src/gpu/gl/*.cpp",
"src/gpu/gl/*.h",
"src/gpu/gl/builders/*.cpp",
"src/gpu/gl/builders/*.h",
"src/gpu/gl/egl/GrGLMakeEGLInterface.cpp",
"src/gpu/gl/egl/GrGLMakeNativeInterface_egl.cpp",
"src/gpu/ganesh/gl/*.cpp",
"src/gpu/ganesh/gl/*.h",
"src/gpu/ganesh/gl/builders/*.cpp",
"src/gpu/ganesh/gl/builders/*.h",
"src/gpu/ganesh/gl/egl/GrGLMakeEGLInterface.cpp",
"src/gpu/ganesh/gl/egl/GrGLMakeNativeInterface_egl.cpp",
],
exclude = [
"src/gpu/gl/GrGLMakeNativeInterface_none.cpp",
"src/gpu/ganesh/gl/GrGLMakeNativeInterface_none.cpp",
],
)
PORTS_SRCS_UNIX = struct(
@ -315,14 +315,14 @@ PORTS_SRCS_UNIX = struct(
GL_SRCS_ANDROID = struct(
include = [
"src/gpu/gl/*.cpp",
"src/gpu/gl/*.h",
"src/gpu/gl/builders/*.cpp",
"src/gpu/gl/builders/*.h",
"src/gpu/gl/android/*.cpp",
"src/gpu/ganesh/gl/*.cpp",
"src/gpu/ganesh/gl/*.h",
"src/gpu/ganesh/gl/builders/*.cpp",
"src/gpu/ganesh/gl/builders/*.h",
"src/gpu/ganesh/gl/android/*.cpp",
],
exclude = [
"src/gpu/gl/GrGLMakeNativeInterface_none.cpp",
"src/gpu/ganesh/gl/GrGLMakeNativeInterface_none.cpp",
],
)
PORTS_SRCS_ANDROID = struct(
@ -378,14 +378,14 @@ PORTS_SRCS_ANDROID_NO_FONT = struct(
GL_SRCS_IOS = struct(
include = [
"src/gpu/gl/*.cpp",
"src/gpu/gl/*.h",
"src/gpu/gl/builders/*.cpp",
"src/gpu/gl/builders/*.h",
"src/gpu/gl/iOS/GrGLMakeNativeInterface_iOS.cpp",
"src/gpu/ganesh/gl/*.cpp",
"src/gpu/ganesh/gl/*.h",
"src/gpu/ganesh/gl/builders/*.cpp",
"src/gpu/ganesh/gl/builders/*.h",
"src/gpu/ganesh/gl/iOS/GrGLMakeNativeInterface_iOS.cpp",
],
exclude = [
"src/gpu/gl/GrGLMakeNativeInterface_none.cpp",
"src/gpu/ganesh/gl/GrGLMakeNativeInterface_none.cpp",
],
)
PORTS_SRCS_IOS = struct(
@ -420,15 +420,15 @@ PORTS_SRCS_IOS = struct(
GL_SRCS_WASM = struct(
include = [
"src/gpu/gl/*.cpp",
"src/gpu/gl/*.h",
"src/gpu/gl/builders/*.cpp",
"src/gpu/gl/builders/*.h",
"src/gpu/gl/egl/GrGLMakeEGLInterface.cpp",
"src/gpu/gl/egl/GrGLMakeNativeInterface_egl.cpp",
"src/gpu/ganesh/gl/*.cpp",
"src/gpu/ganesh/gl/*.h",
"src/gpu/ganesh/gl/builders/*.cpp",
"src/gpu/ganesh/gl/builders/*.h",
"src/gpu/ganesh/gl/egl/GrGLMakeEGLInterface.cpp",
"src/gpu/ganesh/gl/egl/GrGLMakeNativeInterface_egl.cpp",
],
exclude = [
"src/gpu/gl/GrGLMakeNativeInterface_none.cpp",
"src/gpu/ganesh/gl/GrGLMakeNativeInterface_none.cpp",
],
)
PORTS_SRCS_WASM = struct(
@ -468,8 +468,8 @@ PORTS_SRCS_WASM = struct(
GL_SRCS_FUCHSIA = struct(
include = [
"src/gpu/vk/*.cpp",
"src/gpu/vk/*.h",
"src/gpu/ganesh/vk/*.cpp",
"src/gpu/ganesh/vk/*.h",
],
exclude = [],
)
@ -508,14 +508,14 @@ PORTS_SRCS_FUCHSIA = struct(
GL_SRCS_MACOS = struct(
include = [
"src/gpu/gl/*.cpp",
"src/gpu/gl/*.h",
"src/gpu/gl/builders/*.cpp",
"src/gpu/gl/builders/*.h",
"src/gpu/gl/mac/GrGLMakeNativeInterface_mac.cpp",
"src/gpu/ganesh/gl/*.cpp",
"src/gpu/ganesh/gl/*.h",
"src/gpu/ganesh/gl/builders/*.cpp",
"src/gpu/ganesh/gl/builders/*.h",
"src/gpu/ganesh/gl/mac/GrGLMakeNativeInterface_mac.cpp",
],
exclude = [
"src/gpu/gl/GrGLMakeNativeInterface_none.cpp",
"src/gpu/ganesh/gl/GrGLMakeNativeInterface_none.cpp",
],
)
PORTS_SRCS_MACOS = PORTS_SRCS_IOS
@ -561,7 +561,7 @@ def metal_objc_srcs():
[
"include/**/*.h",
"src/**/*.h",
"src/gpu/mtl/**/*.mm",
"src/gpu/ganesh/mtl/**/*.mm",
"third_party/**/*.h",
],
) + [

View File

@ -18,7 +18,7 @@
#if SK_SUPPORT_GPU
#include "include/gpu/GrDirectContext.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#endif
SkRandom gRand;

View File

@ -18,7 +18,7 @@
#if SK_SUPPORT_GPU
#include "include/gpu/GrDirectContext.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#endif
static sk_sp<SkTypeface> chinese_typeface() {

View File

@ -7,8 +7,8 @@
#include "samplecode/Sample.h"
#include "src/gpu/geometry/GrQuad.h"
#include "src/gpu/ops/QuadPerEdgeAA.h"
#include "src/gpu/ganesh/geometry/GrQuad.h"
#include "src/gpu/ganesh/ops/QuadPerEdgeAA.h"
#include "include/core/SkCanvas.h"
#include "include/core/SkPaint.h"

View File

@ -12,16 +12,16 @@
#if SK_SUPPORT_GPU
#include "src/core/SkCanvasPriv.h"
#include "src/gpu/GrOpFlushState.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/ops/GrDrawOp.h"
#include "src/gpu/ops/GrSimpleMeshDrawOpHelper.h"
#include "src/gpu/ops/PathTessellator.h"
#include "src/gpu/ops/TessellationPathRenderer.h"
#include "src/gpu/ganesh/GrOpFlushState.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/ops/GrDrawOp.h"
#include "src/gpu/ganesh/ops/GrSimpleMeshDrawOpHelper.h"
#include "src/gpu/ganesh/ops/PathTessellator.h"
#include "src/gpu/ganesh/ops/TessellationPathRenderer.h"
#include "src/gpu/ganesh/tessellate/shaders/GrPathTessellationShader.h"
#include "src/gpu/ganesh/v1/SurfaceDrawContext_v1.h"
#include "src/gpu/tessellate/AffineMatrix.h"
#include "src/gpu/tessellate/MiddleOutPolygonTriangulator.h"
#include "src/gpu/tessellate/shaders/GrPathTessellationShader.h"
#include "src/gpu/v1/SurfaceDrawContext_v1.h"
namespace skgpu::v1 {

View File

@ -12,8 +12,8 @@
#include "samplecode/Sample.h"
#include "src/utils/SkUTF.h"
#if SK_SUPPORT_GPU
#include "src/gpu/GrRectanizerPow2.h"
#include "src/gpu/GrRectanizerSkyline.h"
#include "src/gpu/ganesh/GrRectanizerPow2.h"
#include "src/gpu/ganesh/GrRectanizerSkyline.h"
// This slide visualizes the various GrRectanizer-derived classes behavior
// for various input sets

View File

@ -653,8 +653,8 @@ generated_cc_atom(
":SkKeyHelpers_hdr",
":SkReadBuffer_hdr",
":SkWriteBuffer_hdr",
"//src/gpu:GrFragmentProcessor_hdr",
"//src/gpu/effects:GrBlendFragmentProcessor_hdr",
"//src/gpu/ganesh:GrFragmentProcessor_hdr",
"//src/gpu/ganesh/effects:GrBlendFragmentProcessor_hdr",
],
)
@ -666,7 +666,7 @@ generated_cc_atom(
"//include/core:SkBlendMode_hdr",
"//include/core:SkColor_hdr",
"//include/private:SkColorData_hdr",
"//src/gpu:GrXferProcessor_hdr",
"//src/gpu/ganesh:GrXferProcessor_hdr",
],
)
@ -869,22 +869,22 @@ generated_cc_atom(
"//include/core:SkStrokeRec_hdr",
"//include/core:SkVertices_hdr",
"//include/gpu:GrRecordingContext_hdr",
"//src/gpu:GrFragmentProcessor_hdr",
"//src/gpu:GrRecordingContextPriv_hdr",
"//src/gpu:GrResourceProvider_hdr",
"//src/gpu:GrShaderCaps_hdr",
"//src/gpu:GrStyle_hdr",
"//src/gpu:GrTextureProxy_hdr",
"//src/gpu:GrThreadSafeCache_hdr",
"//src/gpu:SkGr_hdr",
"//src/gpu/effects:GrMatrixEffect_hdr",
"//src/gpu/effects:GrSkSLFP_hdr",
"//src/gpu/effects:GrTextureEffect_hdr",
"//src/gpu/geometry:GrStyledShape_hdr",
"//src/gpu/glsl:GrGLSLFragmentShaderBuilder_hdr",
"//src/gpu/glsl:GrGLSLProgramDataManager_hdr",
"//src/gpu/glsl:GrGLSLUniformHandler_hdr",
"//src/gpu/v1:SurfaceDrawContext_v1_hdr",
"//src/gpu/ganesh:GrFragmentProcessor_hdr",
"//src/gpu/ganesh:GrRecordingContextPriv_hdr",
"//src/gpu/ganesh:GrResourceProvider_hdr",
"//src/gpu/ganesh:GrShaderCaps_hdr",
"//src/gpu/ganesh:GrStyle_hdr",
"//src/gpu/ganesh:GrTextureProxy_hdr",
"//src/gpu/ganesh:GrThreadSafeCache_hdr",
"//src/gpu/ganesh:SkGr_hdr",
"//src/gpu/ganesh/effects:GrMatrixEffect_hdr",
"//src/gpu/ganesh/effects:GrSkSLFP_hdr",
"//src/gpu/ganesh/effects:GrTextureEffect_hdr",
"//src/gpu/ganesh/geometry:GrStyledShape_hdr",
"//src/gpu/ganesh/glsl:GrGLSLFragmentShaderBuilder_hdr",
"//src/gpu/ganesh/glsl:GrGLSLProgramDataManager_hdr",
"//src/gpu/ganesh/glsl:GrGLSLUniformHandler_hdr",
"//src/gpu/ganesh/v1:SurfaceDrawContext_v1_hdr",
],
)
@ -981,7 +981,7 @@ generated_cc_atom(
":SkDevice_hdr",
":SkReadBuffer_hdr",
":SkWriter32_hdr",
"//src/gpu:BaseDevice_hdr",
"//src/gpu/ganesh:BaseDevice_hdr",
],
)
@ -1030,10 +1030,10 @@ generated_cc_atom(
"//include/private:SkTo_hdr",
"//include/private/chromium:GrSlug_hdr",
"//include/utils:SkNoDrawCanvas_hdr",
"//src/gpu:BaseDevice_hdr",
"//src/gpu:GrRenderTargetProxy_hdr",
"//src/gpu:GrRenderTarget_hdr",
"//src/gpu:SkGr_hdr",
"//src/gpu/ganesh:BaseDevice_hdr",
"//src/gpu/ganesh:GrRenderTargetProxy_hdr",
"//src/gpu/ganesh:GrRenderTarget_hdr",
"//src/gpu/ganesh:SkGr_hdr",
"//src/image:SkImage_Base_hdr",
"//src/image:SkSurface_Base_hdr",
"//src/utils:SkPatchUtils_hdr",
@ -1089,7 +1089,7 @@ generated_cc_atom(
":SkRectPriv_hdr",
"//include/core:SkCanvas_hdr",
"//include/core:SkPath_hdr",
"//src/gpu:GrProxyProvider_hdr",
"//src/gpu/ganesh:GrProxyProvider_hdr",
"//src/shaders:SkShaderBase_hdr",
],
)
@ -1138,7 +1138,7 @@ generated_cc_atom(
"//include/effects:SkRuntimeEffect_hdr",
"//include/private:SkColorData_hdr",
"//include/private:SkNx_hdr",
"//src/gpu/effects:GrSkSLFP_hdr",
"//src/gpu/ganesh/effects:GrSkSLFP_hdr",
],
)
@ -1166,9 +1166,9 @@ generated_cc_atom(
"//include/private:SkNx_hdr",
"//include/private:SkTDArray_hdr",
"//include/third_party/skcms:skcms_hdr",
"//src/gpu:GrColorInfo_hdr",
"//src/gpu:GrColorSpaceXform_hdr",
"//src/gpu:GrFragmentProcessor_hdr",
"//src/gpu/ganesh:GrColorInfo_hdr",
"//src/gpu/ganesh:GrColorSpaceXform_hdr",
"//src/gpu/ganesh:GrFragmentProcessor_hdr",
],
)
@ -1434,10 +1434,10 @@ generated_cc_atom(
"//include/core:SkSurface_hdr",
"//include/gpu:GrRecordingContext_hdr",
"//include/gpu:GrYUVABackendTextures_hdr",
"//src/gpu:GrProxyProvider_hdr",
"//src/gpu:GrRecordingContextPriv_hdr",
"//src/gpu:GrTexture_hdr",
"//src/gpu:SkGr_hdr",
"//src/gpu/ganesh:GrProxyProvider_hdr",
"//src/gpu/ganesh:GrRecordingContextPriv_hdr",
"//src/gpu/ganesh:GrTexture_hdr",
"//src/gpu/ganesh:SkGr_hdr",
"//src/image:SkImage_GpuYUVA_hdr",
"//src/image:SkImage_Gpu_hdr",
"//src/image:SkSurface_Gpu_hdr",
@ -1453,8 +1453,8 @@ generated_cc_atom(
"//include/core:SkDeferredDisplayList_hdr",
"//include/core:SkRefCnt_hdr",
"//include/core:SkTypes_hdr",
"//src/gpu:GrDirectContextPriv_hdr",
"//src/gpu:GrRenderTask_hdr",
"//src/gpu/ganesh:GrDirectContextPriv_hdr",
"//src/gpu/ganesh:GrRenderTask_hdr",
],
)
@ -1493,7 +1493,7 @@ generated_cc_atom(
"//include/core:SkTypes_hdr",
"//include/private:SkTo_hdr",
"//include/private/chromium:SkChromeRemoteGlyphCache_hdr",
"//src/gpu:GrResourceProvider_hdr",
"//src/gpu/ganesh:GrResourceProvider_hdr",
],
)
@ -2123,7 +2123,7 @@ generated_cc_atom(
":SkScalerContext_hdr",
":SkTextBlobPriv_hdr",
"//include/core:SkSurfaceProps_hdr",
"//src/gpu/text:GrSDFTControl_hdr",
"//src/gpu/ganesh/text:GrSDFTControl_hdr",
],
)
@ -2151,14 +2151,14 @@ generated_cc_atom(
"//include/core:SkPathEffect_hdr",
"//include/gpu:GrRecordingContext_hdr",
"//include/private:SkTDArray_hdr",
"//src/gpu:GrCaps_hdr",
"//src/gpu:GrColorInfo_hdr",
"//src/gpu:GrDirectContextPriv_hdr",
"//src/gpu:GrRecordingContextPriv_hdr",
"//src/gpu:SkGr_hdr",
"//src/gpu/text:GrSDFTControl_hdr",
"//src/gpu/text:GrTextBlobRedrawCoordinator_hdr",
"//src/gpu/v1:SurfaceDrawContext_v1_hdr",
"//src/gpu/ganesh:GrCaps_hdr",
"//src/gpu/ganesh:GrColorInfo_hdr",
"//src/gpu/ganesh:GrDirectContextPriv_hdr",
"//src/gpu/ganesh:GrRecordingContextPriv_hdr",
"//src/gpu/ganesh:SkGr_hdr",
"//src/gpu/ganesh/text:GrSDFTControl_hdr",
"//src/gpu/ganesh/text:GrTextBlobRedrawCoordinator_hdr",
"//src/gpu/ganesh/v1:SurfaceDrawContext_v1_hdr",
],
)
@ -2252,13 +2252,13 @@ generated_cc_atom(
"//include/core:SkColorSpace_hdr",
"//include/core:SkRect_hdr",
"//include/gpu:GrRecordingContext_hdr",
"//src/gpu:GrCaps_hdr",
"//src/gpu:GrRecordingContextPriv_hdr",
"//src/gpu:SkGr_hdr",
"//src/gpu/effects:GrGaussianConvolutionFragmentProcessor_hdr",
"//src/gpu/effects:GrMatrixConvolutionEffect_hdr",
"//src/gpu/effects:GrTextureEffect_hdr",
"//src/gpu/v1:SurfaceDrawContext_v1_hdr",
"//src/gpu/ganesh:GrCaps_hdr",
"//src/gpu/ganesh:GrRecordingContextPriv_hdr",
"//src/gpu/ganesh:SkGr_hdr",
"//src/gpu/ganesh/effects:GrGaussianConvolutionFragmentProcessor_hdr",
"//src/gpu/ganesh/effects:GrMatrixConvolutionEffect_hdr",
"//src/gpu/ganesh/effects:GrTextureEffect_hdr",
"//src/gpu/ganesh/v1:SurfaceDrawContext_v1_hdr",
],
)
@ -2430,12 +2430,12 @@ generated_cc_atom(
"//include/core:SkRect_hdr",
"//include/gpu:GrRecordingContext_hdr",
"//include/private:SkSafe32_hdr",
"//src/gpu:GrColorSpaceXform_hdr",
"//src/gpu:GrDirectContextPriv_hdr",
"//src/gpu:GrRecordingContextPriv_hdr",
"//src/gpu:GrTextureProxy_hdr",
"//src/gpu:SkGr_hdr",
"//src/gpu:SurfaceFillContext_hdr",
"//src/gpu/ganesh:GrColorSpaceXform_hdr",
"//src/gpu/ganesh:GrDirectContextPriv_hdr",
"//src/gpu/ganesh:GrRecordingContextPriv_hdr",
"//src/gpu/ganesh:GrTextureProxy_hdr",
"//src/gpu/ganesh:SkGr_hdr",
"//src/gpu/ganesh:SurfaceFillContext_hdr",
],
)
@ -2450,7 +2450,7 @@ generated_cc_atom(
"//include/core:SkImageGenerator_hdr",
"//include/core:SkImage_hdr",
"//src/codec:SkColorTable_hdr",
"//src/gpu:GrSurfaceProxyView_hdr",
"//src/gpu/ganesh:GrSurfaceProxyView_hdr",
],
)
@ -2702,10 +2702,10 @@ generated_cc_atom(
":SkWriteBuffer_hdr",
"//include/core:SkPath_hdr",
"//include/core:SkRRect_hdr",
"//src/gpu:GrFragmentProcessor_hdr",
"//src/gpu:GrSurfaceProxyView_hdr",
"//src/gpu:GrTextureProxy_hdr",
"//src/gpu/text:GrSDFMaskFilter_hdr",
"//src/gpu/ganesh:GrFragmentProcessor_hdr",
"//src/gpu/ganesh:GrSurfaceProxyView_hdr",
"//src/gpu/ganesh:GrTextureProxy_hdr",
"//src/gpu/ganesh/text:GrSDFMaskFilter_hdr",
],
)
@ -3023,9 +3023,9 @@ generated_cc_atom(
"//include/private:SkColorData_hdr",
"//include/utils:SkRandom_hdr",
"//src/gpu:Blend_hdr",
"//src/gpu:GrFragmentProcessor_hdr",
"//src/gpu:SkGr_hdr",
"//src/gpu/effects:GrBlendFragmentProcessor_hdr",
"//src/gpu/ganesh:GrFragmentProcessor_hdr",
"//src/gpu/ganesh:SkGr_hdr",
"//src/gpu/ganesh/effects:GrBlendFragmentProcessor_hdr",
],
)
@ -3429,8 +3429,8 @@ generated_cc_atom(
"//include/core:SkPicture_hdr",
"//include/core:SkSurface_hdr",
"//include/gpu:GrRecordingContext_hdr",
"//src/gpu:GrRecordingContextPriv_hdr",
"//src/gpu:SkGr_hdr",
"//src/gpu/ganesh:GrRecordingContextPriv_hdr",
"//src/gpu/ganesh:SkGr_hdr",
"//src/image:SkImage_Base_hdr",
],
)
@ -4179,13 +4179,13 @@ generated_cc_atom(
"//include/gpu:GrRecordingContext_hdr",
"//include/private:SkMutex_hdr",
"//include/sksl:DSLCore_hdr",
"//src/gpu:GrColorInfo_hdr",
"//src/gpu:GrFPArgs_hdr",
"//src/gpu:GrImageInfo_hdr",
"//src/gpu:GrRecordingContextPriv_hdr",
"//src/gpu:SurfaceFillContext_hdr",
"//src/gpu/effects:GrMatrixEffect_hdr",
"//src/gpu/effects:GrSkSLFP_hdr",
"//src/gpu/ganesh:GrColorInfo_hdr",
"//src/gpu/ganesh:GrFPArgs_hdr",
"//src/gpu/ganesh:GrImageInfo_hdr",
"//src/gpu/ganesh:GrRecordingContextPriv_hdr",
"//src/gpu/ganesh:SurfaceFillContext_hdr",
"//src/gpu/ganesh/effects:GrMatrixEffect_hdr",
"//src/gpu/ganesh/effects:GrSkSLFP_hdr",
"//src/image:SkImage_Gpu_hdr",
"//src/sksl:SkSLAnalysis_hdr",
"//src/sksl:SkSLCompiler_hdr",
@ -4517,7 +4517,7 @@ generated_cc_atom(
"//include/core:SkSamplingOptions_hdr",
"//include/core:SkSurfaceProps_hdr",
"//include/private:GrTypesPriv_hdr",
"//src/gpu:GrSurfaceProxyView_hdr",
"//src/gpu/ganesh:GrSurfaceProxyView_hdr",
],
)
@ -4537,10 +4537,10 @@ generated_cc_atom(
"//include/core:SkTileMode_hdr",
"//include/gpu:GrDirectContext_hdr",
"//include/gpu:GrRecordingContext_hdr",
"//src/gpu:GrImageInfo_hdr",
"//src/gpu:GrProxyProvider_hdr",
"//src/gpu:GrRecordingContextPriv_hdr",
"//src/gpu:GrTextureProxy_hdr",
"//src/gpu/ganesh:GrImageInfo_hdr",
"//src/gpu/ganesh:GrProxyProvider_hdr",
"//src/gpu/ganesh:GrRecordingContextPriv_hdr",
"//src/gpu/ganesh:GrTextureProxy_hdr",
"//src/image:SkImage_Base_hdr",
"//src/image:SkImage_Gpu_hdr",
"//src/shaders:SkImageShader_hdr",
@ -4571,7 +4571,7 @@ generated_cc_atom(
"//include/core:SkColorSpace_hdr",
"//include/core:SkMallocPixelRef_hdr",
"//include/gpu:GrRecordingContext_hdr",
"//src/gpu:GrRecordingContextPriv_hdr",
"//src/gpu/ganesh:GrRecordingContextPriv_hdr",
],
)
@ -4687,7 +4687,7 @@ generated_cc_atom(
"//include/core:SkTypeface_hdr",
"//include/private:SkMutex_hdr",
"//include/private:SkTemplates_hdr",
"//src/gpu/text:GrStrikeCache_hdr",
"//src/gpu/ganesh/text:GrStrikeCache_hdr",
],
)
@ -4722,7 +4722,7 @@ generated_cc_atom(
":SkStrikeForGPU_hdr",
"//include/core:SkMaskFilter_hdr",
"//include/core:SkPathEffect_hdr",
"//src/gpu/text:GrSDFTControl_hdr",
"//src/gpu/ganesh/text:GrSDFTControl_hdr",
],
)
@ -4737,9 +4737,9 @@ generated_cc_atom(
":SkStrikeSpec_hdr",
":SkTLazy_hdr",
"//include/core:SkGraphics_hdr",
"//src/gpu/text:GrSDFMaskFilter_hdr",
"//src/gpu/text:GrSDFTControl_hdr",
"//src/gpu/text:GrStrikeCache_hdr",
"//src/gpu/ganesh/text:GrSDFMaskFilter_hdr",
"//src/gpu/ganesh/text:GrSDFTControl_hdr",
"//src/gpu/ganesh/text:GrStrikeCache_hdr",
],
)
@ -4839,8 +4839,8 @@ generated_cc_atom(
deps = [
"//include/core:SkSurfaceCharacterization_hdr",
"//include/gpu/vk:GrVkTypes_hdr",
"//src/gpu:GrCaps_hdr",
"//src/gpu:GrContextThreadSafeProxyPriv_hdr",
"//src/gpu/ganesh:GrCaps_hdr",
"//src/gpu/ganesh:GrContextThreadSafeProxyPriv_hdr",
],
)
@ -5020,7 +5020,7 @@ generated_cc_atom(
"//include/core:SkRSXform_hdr",
"//include/core:SkTextBlob_hdr",
"//include/core:SkTypeface_hdr",
"//src/gpu/text:GrTextBlobRedrawCoordinator_hdr",
"//src/gpu/ganesh/text:GrTextBlobRedrawCoordinator_hdr",
],
)
@ -5436,9 +5436,9 @@ generated_cc_atom(
"//include/core:SkString_hdr",
"//include/private:SkColorData_hdr",
"//include/private:SkOnce_hdr",
"//src/gpu:GrFragmentProcessor_hdr",
"//src/gpu/effects:GrCustomXfermode_hdr",
"//src/gpu/effects:GrPorterDuffXferProcessor_hdr",
"//src/gpu/ganesh:GrFragmentProcessor_hdr",
"//src/gpu/ganesh/effects:GrCustomXfermode_hdr",
"//src/gpu/ganesh/effects:GrPorterDuffXferProcessor_hdr",
],
)
@ -5548,9 +5548,9 @@ generated_cc_atom(
"//include/private:SkChecksum_hdr",
"//include/private:SkTHash_hdr",
"//include/private/chromium:SkChromeRemoteGlyphCache_hdr",
"//src/gpu:GrDrawOpAtlas_hdr",
"//src/gpu/text:GrSDFTControl_hdr",
"//src/gpu/text:GrTextBlob_hdr",
"//src/gpu/ganesh:GrDrawOpAtlas_hdr",
"//src/gpu/ganesh/text:GrSDFTControl_hdr",
"//src/gpu/ganesh/text:GrTextBlob_hdr",
],
)

View File

@ -10,8 +10,8 @@
#include "src/core/SkWriteBuffer.h"
#if SK_SUPPORT_GPU
#include "src/gpu/GrFragmentProcessor.h"
#include "src/gpu/effects/GrBlendFragmentProcessor.h"
#include "src/gpu/ganesh/GrFragmentProcessor.h"
#include "src/gpu/ganesh/effects/GrBlendFragmentProcessor.h"
#endif
#ifdef SK_ENABLE_SKSL

View File

@ -33,7 +33,7 @@ void SkBlendMode_AppendStages(SkBlendMode, SkRasterPipeline*);
SkPMColor4f SkBlendMode_Apply(SkBlendMode, const SkPMColor4f& src, const SkPMColor4f& dst);
#if SK_SUPPORT_GPU
#include "src/gpu/GrXferProcessor.h"
#include "src/gpu/ganesh/GrXferProcessor.h"
const GrXPFactory* SkBlendMode_AsXPFactory(SkBlendMode);
#endif

View File

@ -24,23 +24,23 @@
#if SK_SUPPORT_GPU
#include "include/gpu/GrRecordingContext.h"
#include "src/core/SkRuntimeEffectPriv.h"
#include "src/gpu/GrFragmentProcessor.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/GrResourceProvider.h"
#include "src/gpu/GrShaderCaps.h"
#include "src/gpu/GrStyle.h"
#include "src/gpu/GrTextureProxy.h"
#include "src/gpu/GrThreadSafeCache.h"
#include "src/gpu/SkGr.h"
#include "src/gpu/effects/GrMatrixEffect.h"
#include "src/gpu/effects/GrSkSLFP.h"
#include "src/gpu/effects/GrTextureEffect.h"
#include "src/gpu/geometry/GrStyledShape.h"
#include "src/gpu/glsl/GrGLSLFragmentShaderBuilder.h"
#include "src/gpu/glsl/GrGLSLProgramDataManager.h"
#include "src/gpu/glsl/GrGLSLUniformHandler.h"
#include "src/gpu/ganesh/GrFragmentProcessor.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/GrResourceProvider.h"
#include "src/gpu/ganesh/GrShaderCaps.h"
#include "src/gpu/ganesh/GrStyle.h"
#include "src/gpu/ganesh/GrTextureProxy.h"
#include "src/gpu/ganesh/GrThreadSafeCache.h"
#include "src/gpu/ganesh/SkGr.h"
#include "src/gpu/ganesh/effects/GrMatrixEffect.h"
#include "src/gpu/ganesh/effects/GrSkSLFP.h"
#include "src/gpu/ganesh/effects/GrTextureEffect.h"
#include "src/gpu/ganesh/geometry/GrStyledShape.h"
#include "src/gpu/ganesh/glsl/GrGLSLFragmentShaderBuilder.h"
#include "src/gpu/ganesh/glsl/GrGLSLProgramDataManager.h"
#include "src/gpu/ganesh/glsl/GrGLSLUniformHandler.h"
#if SK_GPU_V1
#include "src/gpu/v1/SurfaceDrawContext_v1.h"
#include "src/gpu/ganesh/v1/SurfaceDrawContext_v1.h"
#endif // SK_GPU_V1
#endif // SK_SUPPORT_GPU

View File

@ -54,12 +54,12 @@
#if SK_SUPPORT_GPU
#include "include/gpu/GrDirectContext.h"
#include "include/private/chromium/GrSlug.h"
#include "src/gpu/BaseDevice.h"
#include "src/gpu/SkGr.h"
#include "src/gpu/ganesh/BaseDevice.h"
#include "src/gpu/ganesh/SkGr.h"
#include "src/utils/SkTestCanvas.h"
#if defined(SK_BUILD_FOR_ANDROID_FRAMEWORK)
# include "src/gpu/GrRenderTarget.h"
# include "src/gpu/GrRenderTargetProxy.h"
# include "src/gpu/ganesh/GrRenderTarget.h"
# include "src/gpu/ganesh/GrRenderTargetProxy.h"
#endif
#endif

View File

@ -113,7 +113,7 @@ void SkCanvasPriv::DrawCustomMesh(SkCanvas* canvas,
#if GR_TEST_UTILS
#if SK_SUPPORT_GPU
#include "src/gpu/BaseDevice.h"
#include "src/gpu/ganesh/BaseDevice.h"
#if SK_GPU_V1
skgpu::v1::SurfaceDrawContext* SkCanvasPriv::TopDeviceSurfaceDrawContext(SkCanvas* canvas) {
@ -150,7 +150,7 @@ skgpu::SurfaceFillContext* SkCanvasPriv::TopDeviceSurfaceFillContext(SkCanvas* c
#endif // GR_TEST_UTILS
#if SK_SUPPORT_GPU
#include "src/gpu/BaseDevice.h"
#include "src/gpu/ganesh/BaseDevice.h"
GrRenderTargetProxy* SkCanvasPriv::TopDeviceTargetProxy(SkCanvas* canvas) {
if (auto gpuDevice = canvas->topDevice()->asGaneshDevice()) {

View File

@ -33,9 +33,9 @@
#if SK_SUPPORT_GPU
#include "include/gpu/GrContextOptions.h"
#include "src/gpu/GrDrawOpAtlas.h"
#include "src/gpu/text/GrSDFTControl.h"
#include "src/gpu/text/GrTextBlob.h"
#include "src/gpu/ganesh/GrDrawOpAtlas.h"
#include "src/gpu/ganesh/text/GrSDFTControl.h"
#include "src/gpu/ganesh/text/GrTextBlob.h"
#endif
namespace {

View File

@ -15,7 +15,7 @@
#include <new>
#if SK_SUPPORT_GPU
#include "src/gpu/GrProxyProvider.h"
#include "src/gpu/ganesh/GrProxyProvider.h"
#endif
SkClipStack::Element::Element(const Element& that) {

View File

@ -25,9 +25,9 @@
#include "src/core/SkWriteBuffer.h"
#if SK_SUPPORT_GPU
#include "src/gpu/GrColorInfo.h"
#include "src/gpu/GrColorSpaceXform.h"
#include "src/gpu/GrFragmentProcessor.h"
#include "src/gpu/ganesh/GrColorInfo.h"
#include "src/gpu/ganesh/GrColorSpaceXform.h"
#include "src/gpu/ganesh/GrFragmentProcessor.h"
#endif
bool SkColorFilter::asAColorMode(SkColor* color, SkBlendMode* mode) const {

View File

@ -120,7 +120,7 @@ skvm::Color SkColorFilter_Matrix::onProgram(skvm::Builder* p, skvm::Color c,
}
#if SK_SUPPORT_GPU
#include "src/gpu/effects/GrSkSLFP.h"
#include "src/gpu/ganesh/effects/GrSkSLFP.h"
// Convert RGBA -> HSLA (including unpremul).
//

View File

@ -14,8 +14,8 @@
class SkSurfaceCharacterization;
#if SK_SUPPORT_GPU
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/GrRenderTask.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrRenderTask.h"
#endif
SkDeferredDisplayList::SkDeferredDisplayList(const SkSurfaceCharacterization& characterization,

View File

@ -28,10 +28,10 @@ sk_sp<SkDeferredDisplayList> SkDeferredDisplayListRecorder::detach() { return nu
#include "include/core/SkPromiseImageTexture.h"
#include "include/gpu/GrRecordingContext.h"
#include "include/gpu/GrYUVABackendTextures.h"
#include "src/gpu/GrProxyProvider.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/GrTexture.h"
#include "src/gpu/SkGr.h"
#include "src/gpu/ganesh/GrProxyProvider.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/GrTexture.h"
#include "src/gpu/ganesh/SkGr.h"
#include "src/image/SkImage_Gpu.h"
#include "src/image/SkImage_GpuYUVA.h"
#include "src/image/SkSurface_Gpu.h"

View File

@ -16,7 +16,7 @@
#include "src/core/SkOpts.h"
#include "src/core/SkReadBuffer.h"
#include "src/core/SkWriteBuffer.h"
#include "src/gpu/GrResourceProvider.h"
#include "src/gpu/ganesh/GrResourceProvider.h"
std::unique_ptr<SkDescriptor> SkDescriptor::Alloc(size_t length) {
SkASSERT(length >= sizeof(SkDescriptor) && SkAlign4(length) == length);

View File

@ -9,14 +9,14 @@
#if SK_SUPPORT_GPU
#include "include/gpu/GrRecordingContext.h"
#include "src/gpu/GrCaps.h"
#include "src/gpu/GrColorInfo.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/SkGr.h"
#include "src/gpu/text/GrSDFTControl.h"
#include "src/gpu/text/GrTextBlobRedrawCoordinator.h"
#include "src/gpu/v1/SurfaceDrawContext_v1.h"
#include "src/gpu/ganesh/GrCaps.h"
#include "src/gpu/ganesh/GrColorInfo.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/SkGr.h"
#include "src/gpu/ganesh/text/GrSDFTControl.h"
#include "src/gpu/ganesh/text/GrTextBlobRedrawCoordinator.h"
#include "src/gpu/ganesh/v1/SurfaceDrawContext_v1.h"
#endif // SK_SUPPORT_GPU
#include "include/core/SkBitmap.h"

View File

@ -16,7 +16,7 @@
#include "src/core/SkTextBlobPriv.h"
#if SK_SUPPORT_GPU
#include "src/gpu/text/GrSDFTControl.h"
#include "src/gpu/ganesh/text/GrSDFTControl.h"
class GrColorInfo;
namespace skgpu { namespace v1 { class SurfaceDrawContext; }}
#endif

View File

@ -14,15 +14,15 @@
#if SK_SUPPORT_GPU
#include "include/core/SkColorSpace.h"
#include "include/gpu/GrRecordingContext.h"
#include "src/gpu/GrCaps.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/SkGr.h"
#include "src/gpu/effects/GrGaussianConvolutionFragmentProcessor.h"
#include "src/gpu/effects/GrMatrixConvolutionEffect.h"
#include "src/gpu/effects/GrTextureEffect.h"
#include "src/gpu/ganesh/GrCaps.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/SkGr.h"
#include "src/gpu/ganesh/effects/GrGaussianConvolutionFragmentProcessor.h"
#include "src/gpu/ganesh/effects/GrMatrixConvolutionEffect.h"
#include "src/gpu/ganesh/effects/GrTextureEffect.h"
#if SK_GPU_V1
#include "src/gpu/v1/SurfaceDrawContext_v1.h"
#include "src/gpu/ganesh/v1/SurfaceDrawContext_v1.h"
using Direction = GrGaussianConvolutionFragmentProcessor::Direction;

View File

@ -22,12 +22,12 @@
#include "src/core/SkWriteBuffer.h"
#if SK_SUPPORT_GPU
#include "include/gpu/GrRecordingContext.h"
#include "src/gpu/GrColorSpaceXform.h"
#include "src/gpu/GrDirectContextPriv.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/GrTextureProxy.h"
#include "src/gpu/SkGr.h"
#include "src/gpu/SurfaceFillContext.h"
#include "src/gpu/ganesh/GrColorSpaceXform.h"
#include "src/gpu/ganesh/GrDirectContextPriv.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/GrTextureProxy.h"
#include "src/gpu/ganesh/SkGr.h"
#include "src/gpu/ganesh/SurfaceFillContext.h"
#endif
#include <atomic>

View File

@ -43,7 +43,7 @@ bool SkImageGenerator::getYUVAPlanes(const SkYUVAPixmaps& yuvaPixmaps) {
}
#if SK_SUPPORT_GPU
#include "src/gpu/GrSurfaceProxyView.h"
#include "src/gpu/ganesh/GrSurfaceProxyView.h"
GrSurfaceProxyView SkImageGenerator::generateTexture(GrRecordingContext* ctx,
const SkImageInfo& info,

View File

@ -19,10 +19,10 @@
#include "src/core/SkWriteBuffer.h"
#if SK_SUPPORT_GPU
#include "src/gpu/GrFragmentProcessor.h"
#include "src/gpu/GrSurfaceProxyView.h"
#include "src/gpu/GrTextureProxy.h"
#include "src/gpu/text/GrSDFMaskFilter.h"
#include "src/gpu/ganesh/GrFragmentProcessor.h"
#include "src/gpu/ganesh/GrSurfaceProxyView.h"
#include "src/gpu/ganesh/GrTextureProxy.h"
#include "src/gpu/ganesh/text/GrSDFMaskFilter.h"
#endif
SkMaskFilterBase::NinePatch::~NinePatch() {

View File

@ -84,9 +84,9 @@ skvm::Color SkModeColorFilter::onProgram(skvm::Builder* p, skvm::Color c,
///////////////////////////////////////////////////////////////////////////////
#if SK_SUPPORT_GPU
#include "src/gpu/Blend.h"
#include "src/gpu/GrFragmentProcessor.h"
#include "src/gpu/SkGr.h"
#include "src/gpu/effects/GrBlendFragmentProcessor.h"
#include "src/gpu/ganesh/GrFragmentProcessor.h"
#include "src/gpu/ganesh/SkGr.h"
#include "src/gpu/ganesh/effects/GrBlendFragmentProcessor.h"
GrFPResult SkModeColorFilter::asFragmentProcessor(std::unique_ptr<GrFragmentProcessor> inputFP,
GrRecordingContext*,

View File

@ -92,8 +92,8 @@ bool SkPictureImageGenerator::onGetPixels(const SkImageInfo& info, void* pixels,
#if SK_SUPPORT_GPU
#include "include/gpu/GrRecordingContext.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/SkGr.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/SkGr.h"
GrSurfaceProxyView SkPictureImageGenerator::onGenerateTexture(GrRecordingContext* ctx,
const SkImageInfo& info,

View File

@ -37,13 +37,13 @@
#if SK_SUPPORT_GPU
#include "include/gpu/GrRecordingContext.h"
#include "src/gpu/GrColorInfo.h"
#include "src/gpu/GrFPArgs.h"
#include "src/gpu/GrImageInfo.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/SurfaceFillContext.h"
#include "src/gpu/effects/GrMatrixEffect.h"
#include "src/gpu/effects/GrSkSLFP.h"
#include "src/gpu/ganesh/GrColorInfo.h"
#include "src/gpu/ganesh/GrFPArgs.h"
#include "src/gpu/ganesh/GrImageInfo.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/SurfaceFillContext.h"
#include "src/gpu/ganesh/effects/GrMatrixEffect.h"
#include "src/gpu/ganesh/effects/GrSkSLFP.h"
#include "src/image/SkImage_Gpu.h"
#endif

View File

@ -20,10 +20,10 @@
#if SK_SUPPORT_GPU
#include "include/gpu/GrDirectContext.h"
#include "include/gpu/GrRecordingContext.h"
#include "src/gpu/GrImageInfo.h"
#include "src/gpu/GrProxyProvider.h"
#include "src/gpu/GrRecordingContextPriv.h"
#include "src/gpu/GrTextureProxy.h"
#include "src/gpu/ganesh/GrImageInfo.h"
#include "src/gpu/ganesh/GrProxyProvider.h"
#include "src/gpu/ganesh/GrRecordingContextPriv.h"
#include "src/gpu/ganesh/GrTextureProxy.h"
#include "src/image/SkImage_Gpu.h"
#include "src/shaders/SkImageShader.h"
#endif

View File

@ -16,7 +16,7 @@
#if SK_SUPPORT_GPU
#include "include/private/GrTypesPriv.h"
#include "src/gpu/GrSurfaceProxyView.h"
#include "src/gpu/ganesh/GrSurfaceProxyView.h"
#endif
class GrRecordingContext;

Some files were not shown because too many files have changed in this diff Show More