SkiaSharp.SKSurface.Create C# (CSharp) Method

Create() public static method

public static Create ( GRContext context, GRBackendRenderTargetDesc desc ) : SKSurface
context GRContext
desc GRBackendRenderTargetDesc
return SKSurface
		public static SKSurface Create (GRContext context, GRBackendRenderTargetDesc desc)
		{
			return GetObject<SKSurface> (SkiaApi.sk_surface_new_backend_render_target (context.Handle, ref desc, IntPtr.Zero));
		}
		

Same methods

SKSurface::Create ( GRContext context, GRBackendRenderTargetDesc desc, SKSurfaceProps props ) : SKSurface
SKSurface::Create ( GRContext context, GRBackendTextureDesc desc ) : SKSurface
SKSurface::Create ( GRContext context, GRBackendTextureDesc desc, SKSurfaceProps props ) : SKSurface
SKSurface::Create ( GRContext context, bool budgeted, SKImageInfo info ) : SKSurface
SKSurface::Create ( GRContext context, bool budgeted, SKImageInfo info, int sampleCount ) : SKSurface
SKSurface::Create ( GRContext context, bool budgeted, SKImageInfo info, int sampleCount, SKSurfaceProps props ) : SKSurface
SKSurface::Create ( SKImageInfo info ) : SKSurface
SKSurface::Create ( SKImageInfo info, IntPtr pixels, int rowBytes ) : SKSurface
SKSurface::Create ( SKImageInfo info, IntPtr pixels, int rowBytes, SKSurfaceProps props ) : SKSurface
SKSurface::Create ( SKImageInfo info, SKSurfaceProps props ) : SKSurface
SKSurface::Create ( int width, int height, SKColorType colorType, SKAlphaType alphaType ) : SKSurface
SKSurface::Create ( int width, int height, SKColorType colorType, SKAlphaType alphaType, IntPtr pixels, int rowBytes ) : SKSurface
SKSurface::Create ( int width, int height, SKColorType colorType, SKAlphaType alphaType, IntPtr pixels, int rowBytes, SKSurfaceProps props ) : SKSurface
SKSurface::Create ( int width, int height, SKColorType colorType, SKAlphaType alphaType, SKSurfaceProps props ) : SKSurface