Revert "[graphite] Move Graphite into Skia base directories."

This reverts commit ae5e846047.

Reason for revert: Breaking Google3

Original change's description:
> [graphite] Move Graphite into Skia base directories.
>
> Change-Id: Ie0fb74f3766a8b33387c145bd1151344c25808cb
> Reviewed-on: https://skia-review.googlesource.com/c/skia/+/528708
> Reviewed-by: Kevin Lubick <kjlubick@google.com>
> Reviewed-by: Greg Daniel <egdaniel@google.com>
> Commit-Queue: Jim Van Verth <jvanverth@google.com>

Change-Id: Ia57992a22c42b17216b40fd29452865f957fb802
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/528653
Auto-Submit: Jim Van Verth <jvanverth@google.com>
Bot-Commit: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com>
Reviewed-by: Greg Daniel <egdaniel@google.com>
Commit-Queue: Greg Daniel <egdaniel@google.com>
This commit is contained in:
Jim Van Verth 2022-04-08 23:25:39 +00:00 committed by SkCQ
parent 6b6015ff79
commit ab4d4ae9e2
191 changed files with 699 additions and 700 deletions

View File

@ -7,7 +7,7 @@ generate:
modules/skshaper modules/svg modules/skresources modules/skparagraph modules/skunicode \
modules/skottie modules/skresources modules/sksg experimental/ffmpeg \
modules/particles \
experimental/bazel_test example \
experimental/bazel_test experimental/graphite example \
modules/canvaskit/go \
infra/bots/task_drivers

View File

@ -5,11 +5,11 @@
* found in the LICENSE file.
*/
#include "bench/Benchmark.h"
#include "experimental/graphite/src/geom/IntersectionTree.h"
#include "include/core/SkPaint.h"
#include "include/core/SkPath.h"
#include "include/utils/SkRandom.h"
#include "src/core/SkMathPriv.h"
#include "src/gpu/graphite/geom/IntersectionTree.h"
#include "tools/ToolUtils.h"
#include "tools/flags/CommandLineFlags.h"

View File

@ -62,10 +62,10 @@
#endif
#ifdef SK_GRAPHITE_ENABLED
#include "include/gpu/graphite/Context.h"
#include "include/gpu/graphite/Recorder.h"
#include "include/gpu/graphite/Recording.h"
#include "include/gpu/graphite/SkStuff.h"
#include "experimental/graphite/include/Context.h"
#include "experimental/graphite/include/Recorder.h"
#include "experimental/graphite/include/Recording.h"
#include "experimental/graphite/include/SkStuff.h"
#include "tools/graphite/ContextFactory.h"
#include "tools/graphite/GraphiteTestContext.h"
#endif

View File

@ -10,7 +10,7 @@
#include "include/gpu/GrDirectContext.h"
#ifdef SK_GRAPHITE_ENABLED
#include "include/gpu/graphite/Context.h"
#include "experimental/graphite/include/Context.h"
#include "tools/graphite/ContextFactory.h"
#endif

View File

@ -81,12 +81,12 @@
#endif
#ifdef SK_GRAPHITE_ENABLED
#include "include/gpu/graphite/Context.h"
#include "include/gpu/graphite/Recorder.h"
#include "include/gpu/graphite/Recording.h"
#include "include/gpu/graphite/SkStuff.h"
#include "experimental/graphite/include/Context.h"
#include "experimental/graphite/include/Recorder.h"
#include "experimental/graphite/include/Recording.h"
#include "experimental/graphite/include/SkStuff.h"
// TODO: Remove this src include once we figure out public readPixels call for Graphite.
#include "src/gpu/graphite/Surface_Graphite.h"
#include "experimental/graphite/src/Surface_Graphite.h"
#include "tools/graphite/ContextFactory.h"
#include "tools/graphite/GraphiteTestContext.h"
#endif

View File

@ -7,8 +7,8 @@ generated_cc_atom(
deps = [
":GraphiteTypes_hdr",
":TextureInfo_hdr",
"//experimental/graphite/include/mtl:MtlTypes_hdr",
"//include/core:SkSize_hdr",
"//include/gpu/graphite/mtl:MtlTypes_hdr",
],
)
@ -69,6 +69,6 @@ generated_cc_atom(
visibility = ["//:__subpackages__"],
deps = [
":GraphiteTypes_hdr",
"//include/private/gpu/graphite:MtlTypesPriv_hdr",
"//experimental/graphite/include/private:MtlTypesPriv_hdr",
],
)

View File

@ -8,12 +8,12 @@
#ifndef skgpu_graphite_BackendTexture_DEFINED
#define skgpu_graphite_BackendTexture_DEFINED
#include "experimental/graphite/include/GraphiteTypes.h"
#include "experimental/graphite/include/TextureInfo.h"
#include "include/core/SkSize.h"
#include "include/gpu/graphite/GraphiteTypes.h"
#include "include/gpu/graphite/TextureInfo.h"
#ifdef SK_METAL
#include "include/gpu/graphite/mtl/MtlTypes.h"
#include "experimental/graphite/include/mtl/MtlTypes.h"
#endif
namespace skgpu::graphite {

View File

@ -15,7 +15,7 @@
#include "include/core/SkTileMode.h"
#include "include/private/SkNoncopyable.h"
#include "include/gpu/graphite/GraphiteTypes.h"
#include "experimental/graphite/include/GraphiteTypes.h"
namespace skgpu::graphite {

View File

@ -8,10 +8,10 @@
#ifndef skgpu_graphite_TextureInfo_DEFINED
#define skgpu_graphite_TextureInfo_DEFINED
#include "include/gpu/graphite/GraphiteTypes.h"
#include "experimental/graphite/include/GraphiteTypes.h"
#ifdef SK_METAL
#include "include/private/gpu/graphite/MtlTypesPriv.h"
#include "experimental/graphite/include/private/MtlTypesPriv.h"
#endif
namespace skgpu::graphite {

View File

@ -8,7 +8,7 @@
#ifndef skgpu_graphite_MtlBackendContext_DEFINED
#define skgpu_graphite_MtlBackendContext_DEFINED
#include "include/gpu/graphite/mtl/MtlTypes.h"
#include "experimental/graphite/include/mtl/MtlTypes.h"
namespace skgpu::graphite {

View File

@ -5,7 +5,7 @@ generated_cc_atom(
hdrs = ["MtlTypesPriv.h"],
visibility = ["//:__subpackages__"],
deps = [
"//include/gpu/graphite:GraphiteTypes_hdr",
"//include/gpu/graphite/mtl:MtlTypes_hdr",
"//experimental/graphite/include:GraphiteTypes_hdr",
"//experimental/graphite/include/mtl:MtlTypes_hdr",
],
)

View File

@ -8,8 +8,8 @@
#ifndef skgpu_graphite_MtlTypesPriv_DEFINED
#define skgpu_graphite_MtlTypesPriv_DEFINED
#include "include/gpu/graphite/GraphiteTypes.h"
#include "include/gpu/graphite/mtl/MtlTypes.h"
#include "experimental/graphite/include/GraphiteTypes.h"
#include "experimental/graphite/include/mtl/MtlTypes.h"
///////////////////////////////////////////////////////////////////////////////

View File

@ -8,8 +8,8 @@
#ifndef skgpu_graphite_Attribute_DEFINED
#define skgpu_graphite_Attribute_DEFINED
#include "experimental/graphite/src/DrawTypes.h"
#include "src/core/SkSLTypeShared.h"
#include "src/gpu/graphite/DrawTypes.h"
namespace skgpu::graphite {

View File

@ -14,7 +14,7 @@ generated_cc_atom(
name = "BackendTexture_src",
srcs = ["BackendTexture.cpp"],
visibility = ["//:__subpackages__"],
deps = ["//include/gpu/graphite:BackendTexture_hdr"],
deps = ["//experimental/graphite/include:BackendTexture_hdr"],
)
generated_cc_atom(
@ -53,7 +53,7 @@ generated_cc_atom(
visibility = ["//:__subpackages__"],
deps = [
":Caps_hdr",
"//include/gpu/graphite:TextureInfo_hdr",
"//experimental/graphite/include:TextureInfo_hdr",
"//src/sksl:SkSLUtil_hdr",
],
)
@ -65,10 +65,10 @@ generated_cc_atom(
deps = [
":DrawTypes_hdr",
":DrawWriter_hdr",
"//experimental/graphite/include:TextureInfo_hdr",
"//include/core:SkColor_hdr",
"//include/core:SkRect_hdr",
"//include/core:SkRefCnt_hdr",
"//include/gpu/graphite:TextureInfo_hdr",
"//include/private:SkTArray_hdr",
],
)
@ -93,7 +93,7 @@ generated_cc_atom(
name = "ContextPriv_hdr",
hdrs = ["ContextPriv.h"],
visibility = ["//:__subpackages__"],
deps = ["//include/gpu/graphite:Context_hdr"],
deps = ["//experimental/graphite/include:Context_hdr"],
)
generated_cc_atom(
@ -145,17 +145,17 @@ generated_cc_atom(
":GraphicsPipelineDesc_hdr",
":Renderer_hdr",
":ResourceProvider_hdr",
"//experimental/graphite/include:BackendTexture_hdr",
"//experimental/graphite/include:Context_hdr",
"//experimental/graphite/include:Recorder_hdr",
"//experimental/graphite/include:Recording_hdr",
"//experimental/graphite/include:TextureInfo_hdr",
"//experimental/graphite/src/mtl:MtlTrampoline_hdr",
"//include/core:SkPathTypes_hdr",
"//include/gpu/graphite:BackendTexture_hdr",
"//include/gpu/graphite:Context_hdr",
"//include/gpu/graphite:Recorder_hdr",
"//include/gpu/graphite:Recording_hdr",
"//include/gpu/graphite:TextureInfo_hdr",
"//src/core:SkKeyContext_hdr",
"//src/core:SkKeyHelpers_hdr",
"//src/core:SkShaderCodeDictionary_hdr",
"//src/gpu:RefCntedCallback_hdr",
"//src/gpu/graphite/mtl:MtlTrampoline_hdr",
],
)
@ -189,8 +189,8 @@ generated_cc_atom(
":ClipStack_graphite_hdr",
":DrawOrder_hdr",
":EnumBitMask_hdr",
"//experimental/graphite/src/geom:Rect_hdr",
"//src/core:SkDevice_hdr",
"//src/gpu/graphite/geom:Rect_hdr",
],
)
@ -213,20 +213,20 @@ generated_cc_atom(
":Renderer_hdr",
":TextureProxy_hdr",
":TextureUtils_hdr",
"//experimental/graphite/include:Recorder_hdr",
"//experimental/graphite/include:SkStuff_hdr",
"//experimental/graphite/src/geom:BoundsManager_hdr",
"//experimental/graphite/src/geom:IntersectionTree_hdr",
"//experimental/graphite/src/geom:Shape_hdr",
"//experimental/graphite/src/geom:Transform_graphite_hdr",
"//include/core:SkPathEffect_hdr",
"//include/core:SkPath_hdr",
"//include/core:SkStrokeRec_hdr",
"//include/gpu/graphite:Recorder_hdr",
"//include/gpu/graphite:SkStuff_hdr",
"//src/core:SkConvertPixels_hdr",
"//src/core:SkMatrixPriv_hdr",
"//src/core:SkPaintPriv_hdr",
"//src/core:SkSpecialImage_hdr",
"//src/core:SkStroke_hdr",
"//src/gpu/graphite/geom:BoundsManager_hdr",
"//src/gpu/graphite/geom:IntersectionTree_hdr",
"//src/gpu/graphite/geom:Shape_hdr",
"//src/gpu/graphite/geom:Transform_graphite_hdr",
],
)
@ -286,13 +286,13 @@ generated_cc_atom(
":ResourceTypes_hdr",
":TextureProxy_hdr",
":UploadTask_hdr",
"//experimental/graphite/include:Context_hdr",
"//experimental/graphite/include:Recorder_hdr",
"//experimental/graphite/src/geom:BoundsManager_hdr",
"//experimental/graphite/src/geom:Shape_hdr",
"//include/core:SkColorSpace_hdr",
"//include/core:SkPixmap_hdr",
"//include/gpu/graphite:Context_hdr",
"//include/gpu/graphite:Recorder_hdr",
"//include/private:SkColorData_hdr",
"//src/gpu/graphite/geom:BoundsManager_hdr",
"//src/gpu/graphite/geom:Shape_hdr",
],
)
@ -304,9 +304,9 @@ generated_cc_atom(
":DrawGeometry_hdr",
":DrawOrder_hdr",
":PaintParams_hdr",
"//experimental/graphite/src/geom:Transform_graphite_hdr",
"//include/core:SkPaint_hdr",
"//src/core:SkTBlockList_hdr",
"//src/gpu/graphite/geom:Transform_graphite_hdr",
],
)
@ -367,13 +367,13 @@ generated_cc_atom(
":TextureProxy_hdr",
":Texture_hdr",
":UniformManager_hdr",
"//include/gpu/graphite:GraphiteTypes_hdr",
"//include/gpu/graphite:Recorder_hdr",
"//experimental/graphite/include:GraphiteTypes_hdr",
"//experimental/graphite/include:Recorder_hdr",
"//experimental/graphite/src/geom:BoundsManager_hdr",
"//src/core:SkMathPriv_hdr",
"//src/core:SkPaintParamsKey_hdr",
"//src/core:SkPipelineData_hdr",
"//src/core:SkTBlockList_hdr",
"//src/gpu/graphite/geom:BoundsManager_hdr",
],
)
@ -381,7 +381,7 @@ generated_cc_atom(
name = "DrawTypes_hdr",
hdrs = ["DrawTypes.h"],
visibility = ["//:__subpackages__"],
deps = ["//include/gpu/graphite:GraphiteTypes_hdr"],
deps = ["//experimental/graphite/include:GraphiteTypes_hdr"],
)
generated_cc_atom(
@ -410,7 +410,7 @@ generated_cc_atom(
name = "EnumBitMask_hdr",
hdrs = ["EnumBitMask.h"],
visibility = ["//:__subpackages__"],
deps = ["//include/gpu/graphite:GraphiteTypes_hdr"],
deps = ["//experimental/graphite/include:GraphiteTypes_hdr"],
)
generated_cc_atom(
@ -425,9 +425,9 @@ generated_cc_atom(
hdrs = ["Gpu.h"],
visibility = ["//:__subpackages__"],
deps = [
"//experimental/graphite/include:GraphiteTypes_hdr",
"//include/core:SkRefCnt_hdr",
"//include/core:SkSize_hdr",
"//include/gpu/graphite:GraphiteTypes_hdr",
"//include/private:SkDeque_hdr",
],
)
@ -443,8 +443,8 @@ generated_cc_atom(
":Gpu_hdr",
":Log_hdr",
":ResourceProvider_hdr",
"//include/gpu/graphite:BackendTexture_hdr",
"//include/gpu/graphite:TextureInfo_hdr",
"//experimental/graphite/include:BackendTexture_hdr",
"//experimental/graphite/include:TextureInfo_hdr",
"//src/sksl:SkSLCompiler_hdr",
],
)
@ -504,9 +504,9 @@ generated_cc_atom(
":Image_Graphite_hdr",
":RecorderPriv_hdr",
":TextureUtils_hdr",
"//experimental/graphite/include:Recorder_hdr",
"//include/core:SkColorSpace_hdr",
"//include/core:SkImageInfo_hdr",
"//include/gpu/graphite:Recorder_hdr",
],
)
@ -514,7 +514,7 @@ generated_cc_atom(
name = "ProgramCache_src",
srcs = ["ProgramCache.cpp"],
visibility = ["//:__subpackages__"],
deps = ["//experimental/graphite/src:ProgramCache_hdr"],
deps = [":ProgramCache_hdr"],
)
generated_cc_atom(
@ -532,8 +532,8 @@ generated_cc_atom(
":PipelineDataCache_hdr",
":ResourceProvider_hdr",
":TaskGraph_hdr",
"//include/gpu/graphite:Recorder_hdr",
"//include/gpu/graphite:Recording_hdr",
"//experimental/graphite/include:Recorder_hdr",
"//experimental/graphite/include:Recording_hdr",
"//src/core:SkPipelineData_hdr",
],
)
@ -545,7 +545,7 @@ generated_cc_atom(
deps = [
":CommandBuffer_hdr",
":PipelineDataCache_hdr",
"//include/gpu/graphite:Recording_hdr",
"//experimental/graphite/include:Recording_hdr",
],
)
@ -631,7 +631,7 @@ generated_cc_atom(
visibility = ["//:__subpackages__"],
deps = [
":EnumBitMask_hdr",
"//include/gpu/graphite:GraphiteTypes_hdr",
"//experimental/graphite/include:GraphiteTypes_hdr",
],
)
@ -649,11 +649,11 @@ generated_cc_atom(
":Surface_Graphite_hdr",
":TextureProxy_hdr",
":Texture_hdr",
"//experimental/graphite/include:BackendTexture_hdr",
"//experimental/graphite/include:Context_hdr",
"//experimental/graphite/include:Recorder_hdr",
"//experimental/graphite/include:SkStuff_hdr",
"//include/core:SkColorSpace_hdr",
"//include/gpu/graphite:BackendTexture_hdr",
"//include/gpu/graphite:Context_hdr",
"//include/gpu/graphite:Recorder_hdr",
"//include/gpu/graphite:SkStuff_hdr",
],
)
@ -672,8 +672,8 @@ generated_cc_atom(
":Device_hdr",
":Image_Graphite_hdr",
":Surface_Graphite_hdr",
"//include/gpu/graphite:Recorder_hdr",
"//include/gpu/graphite:SkStuff_hdr",
"//experimental/graphite/include:Recorder_hdr",
"//experimental/graphite/include:SkStuff_hdr",
],
)
@ -709,7 +709,7 @@ generated_cc_atom(
name = "TextureInfo_src",
srcs = ["TextureInfo.cpp"],
visibility = ["//:__subpackages__"],
deps = ["//include/gpu/graphite:TextureInfo_hdr"],
deps = ["//experimental/graphite/include:TextureInfo_hdr"],
)
generated_cc_atom(
@ -717,9 +717,9 @@ generated_cc_atom(
hdrs = ["TextureProxy.h"],
visibility = ["//:__subpackages__"],
deps = [
"//experimental/graphite/include:TextureInfo_hdr",
"//include/core:SkRefCnt_hdr",
"//include/core:SkSize_hdr",
"//include/gpu/graphite:TextureInfo_hdr",
],
)
@ -741,8 +741,8 @@ generated_cc_atom(
deps = [
":ResourceTypes_hdr",
":Resource_hdr",
"//experimental/graphite/include:TextureInfo_hdr",
"//include/core:SkSize_hdr",
"//include/gpu/graphite:TextureInfo_hdr",
],
)
@ -758,12 +758,12 @@ generated_cc_atom(
hdrs = ["UniformManager.h"],
visibility = ["//:__subpackages__"],
deps = [
"//experimental/graphite/src/geom:VectorTypes_hdr",
"//include/core:SkRefCnt_hdr",
"//include/core:SkSpan_hdr",
"//include/private:SkColorData_hdr",
"//include/private:SkTDArray_hdr",
"//src/core:SkSLTypeShared_hdr",
"//src/gpu/graphite/geom:VectorTypes_hdr",
],
)
@ -885,7 +885,7 @@ generated_cc_atom(
name = "RecorderPriv_hdr",
hdrs = ["RecorderPriv.h"],
visibility = ["//:__subpackages__"],
deps = ["//include/gpu/graphite:Recorder_hdr"],
deps = ["//experimental/graphite/include:Recorder_hdr"],
)
generated_cc_atom(
@ -955,7 +955,7 @@ generated_cc_atom(
":TextureProxy_hdr",
":Texture_hdr",
":UploadTask_hdr",
"//include/gpu/graphite:Recorder_hdr",
"//experimental/graphite/include:Recorder_hdr",
"//src/core:SkConvertPixels_hdr",
"//src/core:SkTraceEvent_hdr",
],
@ -967,9 +967,9 @@ generated_cc_atom(
visibility = ["//:__subpackages__"],
deps = [
":TextureProxy_hdr",
"//experimental/graphite/include:GraphiteTypes_hdr",
"//include/core:SkRect_hdr",
"//include/core:SkRefCnt_hdr",
"//include/gpu/graphite:GraphiteTypes_hdr",
"//src/gpu:Swizzle_hdr",
],
)
@ -991,11 +991,11 @@ generated_cc_atom(
visibility = ["//:__subpackages__"],
deps = [
":DrawOrder_hdr",
"//experimental/graphite/src/geom:Rect_hdr",
"//experimental/graphite/src/geom:Shape_hdr",
"//experimental/graphite/src/geom:Transform_graphite_hdr",
"//include/core:SkPaint_hdr",
"//include/core:SkRect_hdr",
"//src/gpu/graphite/geom:Rect_hdr",
"//src/gpu/graphite/geom:Shape_hdr",
"//src/gpu/graphite/geom:Transform_graphite_hdr",
],
)
@ -1020,11 +1020,11 @@ generated_cc_atom(
":TextureUtils_hdr",
":Texture_hdr",
":UploadTask_hdr",
"//experimental/graphite/include:Context_hdr",
"//experimental/graphite/include:GraphiteTypes_hdr",
"//experimental/graphite/include:Recorder_hdr",
"//experimental/graphite/include:Recording_hdr",
"//include/core:SkBitmap_hdr",
"//include/gpu/graphite:Context_hdr",
"//include/gpu/graphite:GraphiteTypes_hdr",
"//include/gpu/graphite:Recorder_hdr",
"//include/gpu/graphite:Recording_hdr",
"//src/core:SkMipmap_hdr",
],
)
@ -1045,10 +1045,10 @@ generated_cc_atom(
visibility = ["//:__subpackages__"],
deps = [
":DrawOrder_hdr",
"//experimental/graphite/src/geom:Shape_hdr",
"//experimental/graphite/src/geom:Transform_graphite_hdr",
"//include/core:SkClipOp_hdr",
"//src/core:SkTBlockList_hdr",
"//src/gpu/graphite/geom:Shape_hdr",
"//src/gpu/graphite/geom:Transform_graphite_hdr",
],
)
@ -1059,6 +1059,7 @@ generated_cc_atom(
deps = [
":ClipStack_graphite_hdr",
":DrawGeometry_hdr",
"//experimental/graphite/src/geom:BoundsManager_hdr",
"//include/core:SkMatrix_hdr",
"//include/core:SkShader_hdr",
"//include/core:SkStrokeRec_hdr",
@ -1066,6 +1067,5 @@ generated_cc_atom(
"//src/core:SkPathPriv_hdr",
"//src/core:SkRRectPriv_hdr",
"//src/core:SkRectPriv_hdr",
"//src/gpu/graphite/geom:BoundsManager_hdr",
],
)

View File

@ -5,7 +5,7 @@
* found in the LICENSE file.
*/
#include "include/gpu/graphite/BackendTexture.h"
#include "experimental/graphite/include/BackendTexture.h"
namespace skgpu::graphite {

View File

@ -5,7 +5,7 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/Buffer.h"
#include "experimental/graphite/src/Buffer.h"
namespace skgpu::graphite {

View File

@ -8,8 +8,8 @@
#ifndef skgpu_graphite_Buffer_DEFINED
#define skgpu_graphite_Buffer_DEFINED
#include "src/gpu/graphite/Resource.h"
#include "src/gpu/graphite/ResourceTypes.h"
#include "experimental/graphite/src/Resource.h"
#include "experimental/graphite/src/ResourceTypes.h"
namespace skgpu::graphite {

View File

@ -5,9 +5,9 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/Caps.h"
#include "experimental/graphite/src/Caps.h"
#include "include/gpu/graphite/TextureInfo.h"
#include "experimental/graphite/include/TextureInfo.h"
#include "src/sksl/SkSLUtil.h"
namespace skgpu::graphite {

View File

@ -8,11 +8,11 @@
#ifndef skgpu_graphite_Caps_DEFINED
#define skgpu_graphite_Caps_DEFINED
#include "experimental/graphite/src/ResourceTypes.h"
#include "include/core/SkImageInfo.h"
#include "include/core/SkRefCnt.h"
#include "src/gpu/ResourceKey.h"
#include "src/gpu/Swizzle.h"
#include "src/gpu/graphite/ResourceTypes.h"
namespace SkSL {
struct ShaderCaps;

View File

@ -5,8 +5,10 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/ClipStack_graphite.h"
#include "experimental/graphite/src/ClipStack_graphite.h"
#include "experimental/graphite/src/DrawGeometry.h"
#include "experimental/graphite/src/geom/BoundsManager.h"
#include "include/core/SkMatrix.h"
#include "include/core/SkShader.h"
#include "include/core/SkStrokeRec.h"
@ -14,8 +16,6 @@
#include "src/core/SkPathPriv.h"
#include "src/core/SkRRectPriv.h"
#include "src/core/SkRectPriv.h"
#include "src/gpu/graphite/DrawGeometry.h"
#include "src/gpu/graphite/geom/BoundsManager.h"
namespace skgpu::graphite {

View File

@ -8,11 +8,11 @@
#ifndef skgpu_graphite_ClipStack_DEFINED
#define skgpu_graphite_ClipStack_DEFINED
#include "experimental/graphite/src/DrawOrder.h"
#include "experimental/graphite/src/geom/Shape.h"
#include "experimental/graphite/src/geom/Transform_graphite.h"
#include "include/core/SkClipOp.h"
#include "src/core/SkTBlockList.h"
#include "src/gpu/graphite/DrawOrder.h"
#include "src/gpu/graphite/geom/Shape.h"
#include "src/gpu/graphite/geom/Transform_graphite.h"
class SkShader;
class SkStrokeRec;

View File

@ -5,15 +5,15 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/CommandBuffer.h"
#include "experimental/graphite/src/CommandBuffer.h"
#include "experimental/graphite/src/Buffer.h"
#include "experimental/graphite/src/GraphicsPipeline.h"
#include "experimental/graphite/src/Sampler.h"
#include "experimental/graphite/src/Texture.h"
#include "experimental/graphite/src/TextureProxy.h"
#include "src/core/SkTraceEvent.h"
#include "src/gpu/RefCntedCallback.h"
#include "src/gpu/graphite/Buffer.h"
#include "src/gpu/graphite/GraphicsPipeline.h"
#include "src/gpu/graphite/Sampler.h"
#include "src/gpu/graphite/Texture.h"
#include "src/gpu/graphite/TextureProxy.h"
namespace skgpu::graphite {

View File

@ -8,13 +8,13 @@
#ifndef skgpu_graphite_CommandBuffer_DEFINED
#define skgpu_graphite_CommandBuffer_DEFINED
#include "experimental/graphite/include/TextureInfo.h"
#include "experimental/graphite/src/DrawTypes.h"
#include "experimental/graphite/src/DrawWriter.h"
#include "include/core/SkColor.h"
#include "include/core/SkRect.h"
#include "include/core/SkRefCnt.h"
#include "include/gpu/graphite/TextureInfo.h"
#include "include/private/SkTArray.h"
#include "src/gpu/graphite/DrawTypes.h"
#include "src/gpu/graphite/DrawWriter.h"
struct SkIRect;

View File

@ -5,27 +5,27 @@
* found in the LICENSE file.
*/
#include "include/gpu/graphite/Context.h"
#include "experimental/graphite/include/Context.h"
#include "experimental/graphite/include/BackendTexture.h"
#include "experimental/graphite/include/Recorder.h"
#include "experimental/graphite/include/Recording.h"
#include "experimental/graphite/include/TextureInfo.h"
#include "experimental/graphite/src/Caps.h"
#include "experimental/graphite/src/CommandBuffer.h"
#include "experimental/graphite/src/GlobalCache.h"
#include "experimental/graphite/src/Gpu.h"
#include "experimental/graphite/src/GraphicsPipelineDesc.h"
#include "experimental/graphite/src/Renderer.h"
#include "experimental/graphite/src/ResourceProvider.h"
#include "include/core/SkPathTypes.h"
#include "include/gpu/graphite/BackendTexture.h"
#include "include/gpu/graphite/Recorder.h"
#include "include/gpu/graphite/Recording.h"
#include "include/gpu/graphite/TextureInfo.h"
#include "src/core/SkKeyContext.h"
#include "src/core/SkKeyHelpers.h"
#include "src/core/SkShaderCodeDictionary.h"
#include "src/gpu/RefCntedCallback.h"
#include "src/gpu/graphite/Caps.h"
#include "src/gpu/graphite/CommandBuffer.h"
#include "src/gpu/graphite/GlobalCache.h"
#include "src/gpu/graphite/Gpu.h"
#include "src/gpu/graphite/GraphicsPipelineDesc.h"
#include "src/gpu/graphite/Renderer.h"
#include "src/gpu/graphite/ResourceProvider.h"
#ifdef SK_METAL
#include "src/gpu/graphite/mtl/MtlTrampoline.h"
#include "experimental/graphite/src/mtl/MtlTrampoline.h"
#endif
namespace skgpu::graphite {

View File

@ -5,10 +5,10 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/ContextPriv.h"
#include "experimental/graphite/src/ContextPriv.h"
#include "src/gpu/graphite/GlobalCache.h"
#include "src/gpu/graphite/Gpu.h"
#include "experimental/graphite/src/GlobalCache.h"
#include "experimental/graphite/src/Gpu.h"
namespace skgpu::graphite {

View File

@ -8,7 +8,7 @@
#ifndef skgpu_graphite_ContextPriv_DEFINED
#define skgpu_graphite_ContextPriv_DEFINED
#include "include/gpu/graphite/Context.h"
#include "experimental/graphite/include/Context.h"
class SkShaderCodeDictionary;

View File

@ -5,19 +5,19 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/ContextUtils.h"
#include "experimental/graphite/src/ContextUtils.h"
#include <string>
#include "experimental/graphite/src/PaintParams.h"
#include "experimental/graphite/src/RecorderPriv.h"
#include "experimental/graphite/src/Renderer.h"
#include "experimental/graphite/src/ResourceProvider.h"
#include "experimental/graphite/src/UniformManager.h"
#include "include/private/SkUniquePaintParamsID.h"
#include "src/core/SkBlenderBase.h"
#include "src/core/SkKeyContext.h"
#include "src/core/SkPipelineData.h"
#include "src/core/SkShaderCodeDictionary.h"
#include "src/gpu/graphite/PaintParams.h"
#include "src/gpu/graphite/RecorderPriv.h"
#include "src/gpu/graphite/Renderer.h"
#include "src/gpu/graphite/ResourceProvider.h"
#include "src/gpu/graphite/UniformManager.h"
namespace skgpu::graphite {

View File

@ -8,7 +8,7 @@
#ifndef skgpu_graphite_ContextUtils_DEFINED
#define skgpu_graphite_ContextUtils_DEFINED
#include "src/gpu/graphite/PipelineDataCache.h"
#include "experimental/graphite/src/PipelineDataCache.h"
class SkPaintParamsKeyBuilder;
class SkPipelineDataGatherer;

View File

@ -5,11 +5,11 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/CopyTask.h"
#include "experimental/graphite/src/CopyTask.h"
#include "src/gpu/graphite/Buffer.h"
#include "src/gpu/graphite/CommandBuffer.h"
#include "src/gpu/graphite/Texture.h"
#include "experimental/graphite/src/Buffer.h"
#include "experimental/graphite/src/CommandBuffer.h"
#include "experimental/graphite/src/Texture.h"
namespace skgpu::graphite {

View File

@ -8,7 +8,7 @@
#ifndef skgpu_graphite_CopyTask_DEFINED
#define skgpu_graphite_CopyTask_DEFINED
#include "src/gpu/graphite/Task.h"
#include "experimental/graphite/src/Task.h"
#include "include/core/SkRect.h"

View File

@ -5,27 +5,27 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/Device.h"
#include "experimental/graphite/src/Device.h"
#include "include/gpu/graphite/Recorder.h"
#include "include/gpu/graphite/SkStuff.h"
#include "src/gpu/graphite/Buffer.h"
#include "src/gpu/graphite/Caps.h"
#include "src/gpu/graphite/CommandBuffer.h"
#include "src/gpu/graphite/ContextPriv.h"
#include "src/gpu/graphite/DrawContext.h"
#include "src/gpu/graphite/DrawGeometry.h"
#include "src/gpu/graphite/DrawList.h"
#include "src/gpu/graphite/Gpu.h"
#include "src/gpu/graphite/Log.h"
#include "src/gpu/graphite/RecorderPriv.h"
#include "src/gpu/graphite/Renderer.h"
#include "src/gpu/graphite/TextureProxy.h"
#include "src/gpu/graphite/TextureUtils.h"
#include "src/gpu/graphite/geom/BoundsManager.h"
#include "src/gpu/graphite/geom/IntersectionTree.h"
#include "src/gpu/graphite/geom/Shape.h"
#include "src/gpu/graphite/geom/Transform_graphite.h"
#include "experimental/graphite/include/Recorder.h"
#include "experimental/graphite/include/SkStuff.h"
#include "experimental/graphite/src/Buffer.h"
#include "experimental/graphite/src/Caps.h"
#include "experimental/graphite/src/CommandBuffer.h"
#include "experimental/graphite/src/ContextPriv.h"
#include "experimental/graphite/src/DrawContext.h"
#include "experimental/graphite/src/DrawGeometry.h"
#include "experimental/graphite/src/DrawList.h"
#include "experimental/graphite/src/Gpu.h"
#include "experimental/graphite/src/Log.h"
#include "experimental/graphite/src/RecorderPriv.h"
#include "experimental/graphite/src/Renderer.h"
#include "experimental/graphite/src/TextureProxy.h"
#include "experimental/graphite/src/TextureUtils.h"
#include "experimental/graphite/src/geom/BoundsManager.h"
#include "experimental/graphite/src/geom/IntersectionTree.h"
#include "experimental/graphite/src/geom/Shape.h"
#include "experimental/graphite/src/geom/Transform_graphite.h"
#include "include/core/SkPath.h"
#include "include/core/SkPathEffect.h"

View File

@ -10,10 +10,10 @@
#include "src/core/SkDevice.h"
#include "src/gpu/graphite/ClipStack_graphite.h"
#include "src/gpu/graphite/DrawOrder.h"
#include "src/gpu/graphite/EnumBitMask.h"
#include "src/gpu/graphite/geom/Rect.h"
#include "experimental/graphite/src/ClipStack_graphite.h"
#include "experimental/graphite/src/DrawOrder.h"
#include "experimental/graphite/src/EnumBitMask.h"
#include "experimental/graphite/src/geom/Rect.h"
class SkStrokeRec;

View File

@ -5,11 +5,11 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/DrawBufferManager.h"
#include "experimental/graphite/src/DrawBufferManager.h"
#include "src/gpu/graphite/Buffer.h"
#include "src/gpu/graphite/CommandBuffer.h"
#include "src/gpu/graphite/ResourceProvider.h"
#include "experimental/graphite/src/Buffer.h"
#include "experimental/graphite/src/CommandBuffer.h"
#include "experimental/graphite/src/ResourceProvider.h"
namespace skgpu::graphite {

View File

@ -8,10 +8,10 @@
#ifndef skgpu_graphite_DrawBufferManager_DEFINED
#define skgpu_graphite_DrawBufferManager_DEFINED
#include "experimental/graphite/src/DrawTypes.h"
#include "experimental/graphite/src/ResourceTypes.h"
#include "include/core/SkRefCnt.h"
#include "src/gpu/BufferWriter.h"
#include "src/gpu/graphite/DrawTypes.h"
#include "src/gpu/graphite/ResourceTypes.h"
#include <unordered_map>
#include <vector>

View File

@ -5,28 +5,28 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/DrawContext.h"
#include "experimental/graphite/src/DrawContext.h"
#include "include/core/SkColorSpace.h"
#include "include/core/SkPixmap.h"
#include "include/private/SkColorData.h"
#include "include/gpu/graphite/Context.h"
#include "include/gpu/graphite/Recorder.h"
#include "src/gpu/graphite/Buffer.h"
#include "src/gpu/graphite/Caps.h"
#include "src/gpu/graphite/CommandBuffer.h"
#include "src/gpu/graphite/ContextPriv.h"
#include "src/gpu/graphite/DrawList.h"
#include "src/gpu/graphite/DrawPass.h"
#include "src/gpu/graphite/Gpu.h"
#include "src/gpu/graphite/RecorderPriv.h"
#include "src/gpu/graphite/RenderPassTask.h"
#include "src/gpu/graphite/ResourceTypes.h"
#include "src/gpu/graphite/TextureProxy.h"
#include "src/gpu/graphite/UploadTask.h"
#include "src/gpu/graphite/geom/BoundsManager.h"
#include "src/gpu/graphite/geom/Shape.h"
#include "experimental/graphite/include/Context.h"
#include "experimental/graphite/include/Recorder.h"
#include "experimental/graphite/src/Buffer.h"
#include "experimental/graphite/src/Caps.h"
#include "experimental/graphite/src/CommandBuffer.h"
#include "experimental/graphite/src/ContextPriv.h"
#include "experimental/graphite/src/DrawList.h"
#include "experimental/graphite/src/DrawPass.h"
#include "experimental/graphite/src/Gpu.h"
#include "experimental/graphite/src/RecorderPriv.h"
#include "experimental/graphite/src/RenderPassTask.h"
#include "experimental/graphite/src/ResourceTypes.h"
#include "experimental/graphite/src/TextureProxy.h"
#include "experimental/graphite/src/UploadTask.h"
#include "experimental/graphite/src/geom/BoundsManager.h"
#include "experimental/graphite/src/geom/Shape.h"
namespace skgpu::graphite {

View File

@ -11,10 +11,10 @@
#include "include/core/SkImageInfo.h"
#include "include/core/SkRefCnt.h"
#include "src/gpu/graphite/DrawList.h"
#include "src/gpu/graphite/DrawOrder.h"
#include "src/gpu/graphite/DrawTypes.h"
#include "src/gpu/graphite/UploadTask.h"
#include "experimental/graphite/src/DrawList.h"
#include "experimental/graphite/src/DrawOrder.h"
#include "experimental/graphite/src/DrawTypes.h"
#include "experimental/graphite/src/UploadTask.h"
#include <vector>

View File

@ -9,12 +9,12 @@
#define skgpu_DrawGeometry_DEFINED
#include "experimental/graphite/src/DrawOrder.h"
#include "experimental/graphite/src/geom/Rect.h"
#include "experimental/graphite/src/geom/Shape.h"
#include "experimental/graphite/src/geom/Transform_graphite.h"
#include "include/core/SkPaint.h"
#include "include/core/SkRect.h"
#include "src/gpu/graphite/DrawOrder.h"
#include "src/gpu/graphite/geom/Rect.h"
#include "src/gpu/graphite/geom/Shape.h"
#include "src/gpu/graphite/geom/Transform_graphite.h"
#include <optional>

View File

@ -5,10 +5,10 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/DrawList.h"
#include "experimental/graphite/src/DrawList.h"
#include "experimental/graphite/src/Renderer.h"
#include "src/gpu/BufferWriter.h"
#include "src/gpu/graphite/Renderer.h"
namespace skgpu::graphite {

View File

@ -11,10 +11,10 @@
#include "include/core/SkPaint.h"
#include "src/core/SkTBlockList.h"
#include "src/gpu/graphite/DrawGeometry.h"
#include "src/gpu/graphite/DrawOrder.h"
#include "src/gpu/graphite/PaintParams.h"
#include "src/gpu/graphite/geom/Transform_graphite.h"
#include "experimental/graphite/src/DrawGeometry.h"
#include "experimental/graphite/src/DrawOrder.h"
#include "experimental/graphite/src/PaintParams.h"
#include "experimental/graphite/src/geom/Transform_graphite.h"
#include <limits>
#include <optional>

View File

@ -5,29 +5,29 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/DrawPass.h"
#include "experimental/graphite/src/DrawPass.h"
#include "include/gpu/graphite/GraphiteTypes.h"
#include "include/gpu/graphite/Recorder.h"
#include "src/gpu/graphite/Buffer.h"
#include "src/gpu/graphite/ContextPriv.h"
#include "src/gpu/graphite/ContextUtils.h"
#include "src/gpu/graphite/DrawBufferManager.h"
#include "src/gpu/graphite/DrawContext.h"
#include "src/gpu/graphite/DrawList.h"
#include "src/gpu/graphite/DrawWriter.h"
#include "src/gpu/graphite/GlobalCache.h"
#include "src/gpu/graphite/GraphicsPipeline.h"
#include "src/gpu/graphite/GraphicsPipelineDesc.h"
#include "src/gpu/graphite/PipelineDataCache.h"
#include "src/gpu/graphite/RecorderPriv.h"
#include "src/gpu/graphite/Renderer.h"
#include "src/gpu/graphite/ResourceProvider.h"
#include "src/gpu/graphite/Sampler.h"
#include "src/gpu/graphite/Texture.h"
#include "src/gpu/graphite/TextureProxy.h"
#include "src/gpu/graphite/UniformManager.h"
#include "src/gpu/graphite/geom/BoundsManager.h"
#include "experimental/graphite/include/GraphiteTypes.h"
#include "experimental/graphite/include/Recorder.h"
#include "experimental/graphite/src/Buffer.h"
#include "experimental/graphite/src/ContextPriv.h"
#include "experimental/graphite/src/ContextUtils.h"
#include "experimental/graphite/src/DrawBufferManager.h"
#include "experimental/graphite/src/DrawContext.h"
#include "experimental/graphite/src/DrawList.h"
#include "experimental/graphite/src/DrawWriter.h"
#include "experimental/graphite/src/GlobalCache.h"
#include "experimental/graphite/src/GraphicsPipeline.h"
#include "experimental/graphite/src/GraphicsPipelineDesc.h"
#include "experimental/graphite/src/PipelineDataCache.h"
#include "experimental/graphite/src/RecorderPriv.h"
#include "experimental/graphite/src/Renderer.h"
#include "experimental/graphite/src/ResourceProvider.h"
#include "experimental/graphite/src/Sampler.h"
#include "experimental/graphite/src/Texture.h"
#include "experimental/graphite/src/TextureProxy.h"
#include "experimental/graphite/src/UniformManager.h"
#include "experimental/graphite/src/geom/BoundsManager.h"
#include "src/core/SkMathPriv.h"
#include "src/core/SkPaintParamsKey.h"

View File

@ -8,13 +8,13 @@
#ifndef skgpu_graphite_DrawPass_DEFINED
#define skgpu_graphite_DrawPass_DEFINED
#include "experimental/graphite/src/DrawTypes.h"
#include "experimental/graphite/src/GraphicsPipelineDesc.h"
#include "experimental/graphite/src/ResourceTypes.h"
#include "include/core/SkColor.h"
#include "include/core/SkRect.h"
#include "include/core/SkRefCnt.h"
#include "src/core/SkTBlockList.h"
#include "src/gpu/graphite/DrawTypes.h"
#include "src/gpu/graphite/GraphicsPipelineDesc.h"
#include "src/gpu/graphite/ResourceTypes.h"
#include <memory>

View File

@ -8,7 +8,7 @@
#ifndef skgpu_graphite_DrawTypes_DEFINED
#define skgpu_graphite_DrawTypes_DEFINED
#include "include/gpu/graphite/GraphiteTypes.h"
#include "experimental/graphite/include/GraphiteTypes.h"
namespace skgpu::graphite {

View File

@ -5,10 +5,10 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/DrawWriter.h"
#include "experimental/graphite/src/DrawWriter.h"
#include "experimental/graphite/src/DrawBufferManager.h"
#include "src/gpu/BufferWriter.h"
#include "src/gpu/graphite/DrawBufferManager.h"
namespace skgpu::graphite {

View File

@ -8,9 +8,9 @@
#ifndef skgpu_graphite_DrawWriter_DEFINED
#define skgpu_graphite_DrawWriter_DEFINED
#include "experimental/graphite/src/DrawBufferManager.h"
#include "experimental/graphite/src/DrawTypes.h"
#include "src/gpu/BufferWriter.h"
#include "src/gpu/graphite/DrawBufferManager.h"
#include "src/gpu/graphite/DrawTypes.h"
namespace skgpu::graphite {

View File

@ -8,7 +8,7 @@
#ifndef skgpu_graphite_EnumBitMask_DEFINED
#define skgpu_graphite_EnumBitMask_DEFINED
#include "include/gpu/graphite/GraphiteTypes.h"
#include "experimental/graphite/include/GraphiteTypes.h"
namespace skgpu::graphite {

View File

@ -5,7 +5,7 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/GlobalCache.h"
#include "experimental/graphite/src/GlobalCache.h"
#include "src/core/SkShaderCodeDictionary.h"

View File

@ -5,15 +5,15 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/Gpu.h"
#include "experimental/graphite/src/Gpu.h"
#include "include/gpu/graphite/BackendTexture.h"
#include "include/gpu/graphite/TextureInfo.h"
#include "src/gpu/graphite/Caps.h"
#include "src/gpu/graphite/CommandBuffer.h"
#include "src/gpu/graphite/GpuWorkSubmission.h"
#include "src/gpu/graphite/Log.h"
#include "src/gpu/graphite/ResourceProvider.h"
#include "experimental/graphite/include/BackendTexture.h"
#include "experimental/graphite/include/TextureInfo.h"
#include "experimental/graphite/src/Caps.h"
#include "experimental/graphite/src/CommandBuffer.h"
#include "experimental/graphite/src/GpuWorkSubmission.h"
#include "experimental/graphite/src/Log.h"
#include "experimental/graphite/src/ResourceProvider.h"
#include "src/sksl/SkSLCompiler.h"
namespace skgpu::graphite {

View File

@ -12,7 +12,7 @@
#include "include/core/SkSize.h"
#include "include/private/SkDeque.h"
#include "include/gpu/graphite/GraphiteTypes.h"
#include "experimental/graphite/include/GraphiteTypes.h"
namespace SkSL {
class Compiler;

View File

@ -5,9 +5,9 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/GpuWorkSubmission.h"
#include "experimental/graphite/src/GpuWorkSubmission.h"
#include "src/gpu/graphite/CommandBuffer.h"
#include "experimental/graphite/src/CommandBuffer.h"
namespace skgpu::graphite {

View File

@ -5,7 +5,7 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/GraphicsPipeline.h"
#include "experimental/graphite/src/GraphicsPipeline.h"
namespace skgpu::graphite {

View File

@ -8,7 +8,7 @@
#ifndef skgpu_graphite_GraphicsPipeline_DEFINED
#define skgpu_graphite_GraphicsPipeline_DEFINED
#include "src/gpu/graphite/Resource.h"
#include "experimental/graphite/src/Resource.h"
namespace skgpu::graphite {

View File

@ -5,7 +5,7 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/GraphicsPipelineDesc.h"
#include "experimental/graphite/src/GraphicsPipelineDesc.h"
namespace skgpu::graphite {

View File

@ -10,12 +10,12 @@
#include "include/core/SkTypes.h"
#include "experimental/graphite/src/Attribute.h"
#include "experimental/graphite/src/DrawTypes.h"
#include "include/core/SkSpan.h"
#include "include/private/SkOpts_spi.h"
#include "include/private/SkTArray.h"
#include "include/private/SkUniquePaintParamsID.h"
#include "src/gpu/graphite/Attribute.h"
#include "src/gpu/graphite/DrawTypes.h"
#include <array>
namespace skgpu::graphite {

View File

@ -5,7 +5,7 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/GraphiteResourceKey.h"
#include "experimental/graphite/src/GraphiteResourceKey.h"
namespace skgpu::graphite {

View File

@ -8,8 +8,8 @@
#ifndef skgpu_graphite_GraphiteResourceKey_DEFINED
#define skgpu_graphite_GraphiteResourceKey_DEFINED
#include "experimental/graphite/src/ResourceTypes.h"
#include "src/gpu/ResourceKey.h"
#include "src/gpu/graphite/ResourceTypes.h"
namespace skgpu::graphite {

View File

@ -5,14 +5,14 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/Image_Graphite.h"
#include "experimental/graphite/src/Image_Graphite.h"
#include "experimental/graphite/include/Recorder.h"
#include "experimental/graphite/src/Caps.h"
#include "experimental/graphite/src/RecorderPriv.h"
#include "experimental/graphite/src/TextureUtils.h"
#include "include/core/SkColorSpace.h"
#include "include/core/SkImageInfo.h"
#include "include/gpu/graphite/Recorder.h"
#include "src/gpu/graphite/Caps.h"
#include "src/gpu/graphite/RecorderPriv.h"
#include "src/gpu/graphite/TextureUtils.h"
namespace skgpu::graphite {

View File

@ -10,7 +10,7 @@
#include "src/image/SkImage_Base.h"
#include "src/gpu/graphite/TextureProxyView.h"
#include "experimental/graphite/src/TextureProxyView.h"
namespace skgpu::graphite {

View File

@ -5,7 +5,7 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/PaintParams.h"
#include "experimental/graphite/src/PaintParams.h"
#include "include/core/SkShader.h"
#include "src/core/SkBlenderBase.h"

View File

@ -5,20 +5,20 @@
* found in the LICENSE file.
*/
#include "include/gpu/graphite/Recorder.h"
#include "experimental/graphite/include/Recorder.h"
#include "include/gpu/graphite/Recording.h"
#include "experimental/graphite/include/Recording.h"
#include "experimental/graphite/src/Caps.h"
#include "experimental/graphite/src/CommandBuffer.h"
#include "experimental/graphite/src/ContextPriv.h"
#include "experimental/graphite/src/Device.h"
#include "experimental/graphite/src/DrawBufferManager.h"
#include "experimental/graphite/src/GlobalCache.h"
#include "experimental/graphite/src/Gpu.h"
#include "experimental/graphite/src/PipelineDataCache.h"
#include "experimental/graphite/src/ResourceProvider.h"
#include "experimental/graphite/src/TaskGraph.h"
#include "src/core/SkPipelineData.h"
#include "src/gpu/graphite/Caps.h"
#include "src/gpu/graphite/CommandBuffer.h"
#include "src/gpu/graphite/ContextPriv.h"
#include "src/gpu/graphite/Device.h"
#include "src/gpu/graphite/DrawBufferManager.h"
#include "src/gpu/graphite/GlobalCache.h"
#include "src/gpu/graphite/Gpu.h"
#include "src/gpu/graphite/PipelineDataCache.h"
#include "src/gpu/graphite/ResourceProvider.h"
#include "src/gpu/graphite/TaskGraph.h"
namespace skgpu::graphite {

View File

@ -5,11 +5,11 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/RecorderPriv.h"
#include "experimental/graphite/src/RecorderPriv.h"
#include "src/gpu/graphite/Device.h"
#include "src/gpu/graphite/Gpu.h"
#include "src/gpu/graphite/TaskGraph.h"
#include "experimental/graphite/src/Device.h"
#include "experimental/graphite/src/Gpu.h"
#include "experimental/graphite/src/TaskGraph.h"
namespace skgpu::graphite {

View File

@ -8,7 +8,7 @@
#ifndef skgpu_graphite_RecorderPriv_DEFINED
#define skgpu_graphite_RecorderPriv_DEFINED
#include "include/gpu/graphite/Recorder.h"
#include "experimental/graphite/include/Recorder.h"
namespace skgpu::graphite {

View File

@ -5,10 +5,10 @@
* found in the LICENSE file.
*/
#include "include/gpu/graphite/Recording.h"
#include "experimental/graphite/include/Recording.h"
#include "src/gpu/graphite/CommandBuffer.h"
#include "src/gpu/graphite/PipelineDataCache.h"
#include "experimental/graphite/src/CommandBuffer.h"
#include "experimental/graphite/src/PipelineDataCache.h"
namespace skgpu::graphite {

View File

@ -5,15 +5,15 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/RenderPassTask.h"
#include "experimental/graphite/src/RenderPassTask.h"
#include "src/gpu/graphite/CommandBuffer.h"
#include "src/gpu/graphite/ContextPriv.h"
#include "src/gpu/graphite/DrawPass.h"
#include "src/gpu/graphite/Log.h"
#include "src/gpu/graphite/ResourceProvider.h"
#include "src/gpu/graphite/Texture.h"
#include "src/gpu/graphite/TextureProxy.h"
#include "experimental/graphite/src/CommandBuffer.h"
#include "experimental/graphite/src/ContextPriv.h"
#include "experimental/graphite/src/DrawPass.h"
#include "experimental/graphite/src/Log.h"
#include "experimental/graphite/src/ResourceProvider.h"
#include "experimental/graphite/src/Texture.h"
#include "experimental/graphite/src/TextureProxy.h"
namespace skgpu::graphite {

View File

@ -8,8 +8,8 @@
#ifndef skgpu_graphite_RenderPassTask_DEFINED
#define skgpu_graphite_RenderPassTask_DEFINED
#include "src/gpu/graphite/CommandBuffer.h"
#include "src/gpu/graphite/Task.h"
#include "experimental/graphite/src/CommandBuffer.h"
#include "experimental/graphite/src/Task.h"
#include <vector>

View File

@ -8,10 +8,10 @@
#ifndef skgpu_graphite_Renderer_DEFINED
#define skgpu_graphite_Renderer_DEFINED
#include "src/gpu/graphite/Attribute.h"
#include "src/gpu/graphite/DrawTypes.h"
#include "src/gpu/graphite/EnumBitMask.h"
#include "src/gpu/graphite/ResourceTypes.h"
#include "experimental/graphite/src/Attribute.h"
#include "experimental/graphite/src/DrawTypes.h"
#include "experimental/graphite/src/EnumBitMask.h"
#include "experimental/graphite/src/ResourceTypes.h"
#include "include/core/SkSpan.h"
#include "include/core/SkString.h"

View File

@ -5,9 +5,9 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/Resource.h"
#include "experimental/graphite/src/Resource.h"
#include "src/gpu/graphite/ResourceCache.h"
#include "experimental/graphite/src/ResourceCache.h"
namespace skgpu::graphite {

View File

@ -8,9 +8,9 @@
#ifndef skgpu_graphite_Resource_DEFINED
#define skgpu_graphite_Resource_DEFINED
#include "experimental/graphite/src/GraphiteResourceKey.h"
#include "experimental/graphite/src/ResourceTypes.h"
#include "include/private/SkMutex.h"
#include "src/gpu/graphite/GraphiteResourceKey.h"
#include "src/gpu/graphite/ResourceTypes.h"
#include <atomic>

View File

@ -5,13 +5,13 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/ResourceCache.h"
#include "experimental/graphite/src/ResourceCache.h"
#include "experimental/graphite/src/GraphiteResourceKey.h"
#include "experimental/graphite/src/Resource.h"
#include "include/private/SingleOwner.h"
#include "include/utils/SkRandom.h"
#include "src/core/SkTMultiMap.h"
#include "src/gpu/graphite/GraphiteResourceKey.h"
#include "src/gpu/graphite/Resource.h"
namespace skgpu::graphite {

View File

@ -8,13 +8,13 @@
#ifndef skgpu_graphite_ResourceCache_DEFINED
#define skgpu_graphite_ResourceCache_DEFINED
#include "experimental/graphite/src/ResourceTypes.h"
#include "include/core/SkRefCnt.h"
#include "include/private/SkMutex.h"
#include "include/private/SkTArray.h"
#include "include/private/SkTHash.h"
#include "src/core/SkTDPQueue.h"
#include "src/core/SkTMultiMap.h"
#include "src/gpu/graphite/ResourceTypes.h"
#include <vector>

View File

@ -5,18 +5,18 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/ResourceProvider.h"
#include "experimental/graphite/src/ResourceProvider.h"
#include "src/gpu/graphite/Buffer.h"
#include "src/gpu/graphite/Caps.h"
#include "src/gpu/graphite/CommandBuffer.h"
#include "src/gpu/graphite/ContextPriv.h"
#include "src/gpu/graphite/GlobalCache.h"
#include "src/gpu/graphite/Gpu.h"
#include "src/gpu/graphite/GraphicsPipeline.h"
#include "src/gpu/graphite/ResourceCache.h"
#include "src/gpu/graphite/Sampler.h"
#include "src/gpu/graphite/Texture.h"
#include "experimental/graphite/src/Buffer.h"
#include "experimental/graphite/src/Caps.h"
#include "experimental/graphite/src/CommandBuffer.h"
#include "experimental/graphite/src/ContextPriv.h"
#include "experimental/graphite/src/GlobalCache.h"
#include "experimental/graphite/src/Gpu.h"
#include "experimental/graphite/src/GraphicsPipeline.h"
#include "experimental/graphite/src/ResourceCache.h"
#include "experimental/graphite/src/Sampler.h"
#include "experimental/graphite/src/Texture.h"
namespace skgpu::graphite {

View File

@ -8,13 +8,13 @@
#ifndef skgpu_graphite_ResourceProvider_DEFINED
#define skgpu_graphite_ResourceProvider_DEFINED
#include "experimental/graphite/src/CommandBuffer.h"
#include "experimental/graphite/src/GraphicsPipelineDesc.h"
#include "experimental/graphite/src/ResourceTypes.h"
#include "include/core/SkSize.h"
#include "include/core/SkTileMode.h"
#include "src/core/SkLRUCache.h"
#include "src/gpu/ResourceKey.h"
#include "src/gpu/graphite/CommandBuffer.h"
#include "src/gpu/graphite/GraphicsPipelineDesc.h"
#include "src/gpu/graphite/ResourceTypes.h"
struct SkSamplingOptions;
class SkShaderCodeDictionary;

View File

@ -8,8 +8,8 @@
#ifndef skgpu_graphite_ResourceTypes_DEFINED
#define skgpu_graphite_ResourceTypes_DEFINED
#include "include/gpu/graphite/GraphiteTypes.h"
#include "src/gpu/graphite/EnumBitMask.h"
#include "experimental/graphite/include/GraphiteTypes.h"
#include "experimental/graphite/src/EnumBitMask.h"
namespace skgpu::graphite {

View File

@ -5,7 +5,7 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/Sampler.h"
#include "experimental/graphite/src/Sampler.h"
namespace skgpu::graphite {

View File

@ -8,7 +8,7 @@
#ifndef skgpu_graphite_Sampler_DEFINED
#define skgpu_graphite_Sampler_DEFINED
#include "src/gpu/graphite/Resource.h"
#include "experimental/graphite/src/Resource.h"
namespace skgpu::graphite {

View File

@ -5,21 +5,21 @@
* found in the LICENSE file.
*/
#include "include/gpu/graphite/SkStuff.h"
#include "experimental/graphite/include/SkStuff.h"
#include "experimental/graphite/include/BackendTexture.h"
#include "experimental/graphite/include/Context.h"
#include "experimental/graphite/include/Recorder.h"
#include "experimental/graphite/src/Caps.h"
#include "experimental/graphite/src/ContextPriv.h"
#include "experimental/graphite/src/Device.h"
#include "experimental/graphite/src/Gpu.h"
#include "experimental/graphite/src/RecorderPriv.h"
#include "experimental/graphite/src/ResourceProvider.h"
#include "experimental/graphite/src/Surface_Graphite.h"
#include "experimental/graphite/src/Texture.h"
#include "experimental/graphite/src/TextureProxy.h"
#include "include/core/SkColorSpace.h"
#include "include/gpu/graphite/BackendTexture.h"
#include "include/gpu/graphite/Context.h"
#include "include/gpu/graphite/Recorder.h"
#include "src/gpu/graphite/Caps.h"
#include "src/gpu/graphite/ContextPriv.h"
#include "src/gpu/graphite/Device.h"
#include "src/gpu/graphite/Gpu.h"
#include "src/gpu/graphite/RecorderPriv.h"
#include "src/gpu/graphite/ResourceProvider.h"
#include "src/gpu/graphite/Surface_Graphite.h"
#include "src/gpu/graphite/Texture.h"
#include "src/gpu/graphite/TextureProxy.h"
using namespace skgpu::graphite;

View File

@ -5,12 +5,12 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/Surface_Graphite.h"
#include "experimental/graphite/src/Surface_Graphite.h"
#include "include/gpu/graphite/Recorder.h"
#include "include/gpu/graphite/SkStuff.h"
#include "src/gpu/graphite/Device.h"
#include "src/gpu/graphite/Image_Graphite.h"
#include "experimental/graphite/include/Recorder.h"
#include "experimental/graphite/include/SkStuff.h"
#include "experimental/graphite/src/Device.h"
#include "experimental/graphite/src/Image_Graphite.h"
namespace skgpu::graphite {

View File

@ -5,7 +5,7 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/Task.h"
#include "experimental/graphite/src/Task.h"
namespace skgpu::graphite {

View File

@ -5,7 +5,7 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/TaskGraph.h"
#include "experimental/graphite/src/TaskGraph.h"
namespace skgpu::graphite {

View File

@ -9,7 +9,7 @@
#define skgpu_graphite_TaskGraph_DEFINED
#include <vector>
#include "src/gpu/graphite/Task.h"
#include "experimental/graphite/src/Task.h"
namespace skgpu::graphite {
class CommandBuffer;

View File

@ -5,7 +5,7 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/Texture.h"
#include "experimental/graphite/src/Texture.h"
namespace skgpu::graphite {

View File

@ -8,10 +8,10 @@
#ifndef skgpu_graphite_Texture_DEFINED
#define skgpu_graphite_Texture_DEFINED
#include "experimental/graphite/include/TextureInfo.h"
#include "experimental/graphite/src/Resource.h"
#include "experimental/graphite/src/ResourceTypes.h"
#include "include/core/SkSize.h"
#include "include/gpu/graphite/TextureInfo.h"
#include "src/gpu/graphite/Resource.h"
#include "src/gpu/graphite/ResourceTypes.h"
namespace skgpu::graphite {

View File

@ -5,7 +5,7 @@
* found in the LICENSE file.
*/
#include "include/gpu/graphite/TextureInfo.h"
#include "experimental/graphite/include/TextureInfo.h"
namespace skgpu::graphite {

View File

@ -5,10 +5,10 @@
* found in the LICENSE file.
*/
#include "src/gpu/graphite/TextureProxy.h"
#include "experimental/graphite/src/TextureProxy.h"
#include "src/gpu/graphite/ResourceProvider.h"
#include "src/gpu/graphite/Texture.h"
#include "experimental/graphite/src/ResourceProvider.h"
#include "experimental/graphite/src/Texture.h"
namespace skgpu::graphite {

View File

@ -8,9 +8,9 @@
#ifndef skgpu_graphite_TextureProxy_DEFINED
#define skgpu_graphite_TextureProxy_DEFINED
#include "experimental/graphite/include/TextureInfo.h"
#include "include/core/SkRefCnt.h"
#include "include/core/SkSize.h"
#include "include/gpu/graphite/TextureInfo.h"
namespace skgpu::graphite {

View File

@ -8,11 +8,11 @@
#ifndef skgpu_graphite_TextureProxyView_DEFINED
#define skgpu_graphite_TextureProxyView_DEFINED
#include "experimental/graphite/include/GraphiteTypes.h"
#include "experimental/graphite/src/TextureProxy.h"
#include "include/core/SkRect.h"
#include "include/core/SkRefCnt.h"
#include "include/gpu/graphite/GraphiteTypes.h"
#include "src/gpu/Swizzle.h"
#include "src/gpu/graphite/TextureProxy.h"
namespace skgpu::graphite {

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