Example #1
0
        public GRBackendRenderTarget(int width, int height, int sampleCount, GRMtlTextureInfo mtlInfo)
            : this(IntPtr.Zero, true)
        {
            var info = mtlInfo.ToNative();

            Handle = SkiaApi.gr_backendrendertarget_new_metal(width, height, sampleCount, &info);

            if (Handle == IntPtr.Zero)
            {
                throw new InvalidOperationException("Unable to create a new GRBackendRenderTarget instance.");
            }
        }
Example #2
0
        public GRBackendTexture(int width, int height, bool mipmapped, GRMtlTextureInfo mtlInfo)
            : this(IntPtr.Zero, true)
        {
            var info = mtlInfo.ToNative();

            Handle = SkiaApi.gr_backendtexture_new_metal(width, height, mipmapped, &info);

            if (Handle == IntPtr.Zero)
            {
                throw new InvalidOperationException("Unable to create a new GRBackendTexture instance.");
            }
        }
Example #3
0
 public readonly bool Equals(GRMtlTextureInfo obj) =>
 Texture == obj.Texture;