aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/mtl/GrMtlUtil.h
diff options
context:
space:
mode:
authorGravatar Timothy Liang <timliang@google.com>2018-07-31 10:51:17 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-07-31 16:25:55 +0000
commite30739a1e1d90183bc6bf7414e409e89016881f5 (patch)
tree4b84aeadee82fde5b45ec75aa1782897e2c9625f /src/gpu/mtl/GrMtlUtil.h
parentc8ece3d5f877d67114dfda51a336dfdf7838095a (diff)
implemented copy surface as draw for metal gpu backend
Bug: skia: Change-Id: Ie61bd6ad9f288b8a025d44f887a0954101a7d710 Reviewed-on: https://skia-review.googlesource.com/142687 Commit-Queue: Timothy Liang <timliang@google.com> Reviewed-by: Greg Daniel <egdaniel@google.com>
Diffstat (limited to 'src/gpu/mtl/GrMtlUtil.h')
-rw-r--r--src/gpu/mtl/GrMtlUtil.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/gpu/mtl/GrMtlUtil.h b/src/gpu/mtl/GrMtlUtil.h
index b3a7829531..fa43295ba1 100644
--- a/src/gpu/mtl/GrMtlUtil.h
+++ b/src/gpu/mtl/GrMtlUtil.h
@@ -11,7 +11,10 @@
#import <Metal/Metal.h>
#include "GrTypesPriv.h"
+#include "ir/SkSLProgram.h"
+class GrMtlGpu;
+class GrSurface;
/**
* Returns the Metal texture format for the given GrPixelConfig
@@ -45,4 +48,18 @@ const void* GrReleaseId(id idObject);
*/
MTLTextureDescriptor* GrGetMTLTextureDescriptor(id<MTLTexture> mtlTexture);
+/**
+ * Returns a compiled MTLLibrary created from MSL code generated by SkSLC
+ */
+id<MTLLibrary> GrCompileMtlShaderLibrary(const GrMtlGpu* gpu,
+ const char* shaderString,
+ SkSL::Program::Kind kind,
+ const SkSL::Program::Settings& settings,
+ SkSL::Program::Inputs* outInputs);
+
+/**
+ * Returns a MTLTexture corresponding to the GrSurface. Optionally can do a resolve.
+ */
+id<MTLTexture> GrGetMTLTextureFromSurface(GrSurface* surface, bool doResolve);
+
#endif