public void DrawImage(CanvasElementEx image, float dx, float dy) { }
 public void DrawImage(CanvasElementEx image, float sx, float sy, float sw, float sh, float dx, float dy, float dw, float dh) { }
 public abstract void TexImage2Dx(uint target, int level, uint internalformat, uint format, uint type, CanvasElementEx canvas);
 public Pattern CreatePattern(CanvasElementEx canvas, string repetition) { return null; }
Esempio n. 5
0
 public void DrawImage(CanvasElementEx image, float dx, float dy)
 {
 }
Esempio n. 6
0
 public void DrawImage(CanvasElementEx image, float sx, float sy, float sw, float sh, float dx, float dy, float dw, float dh)
 {
 }
 public WebGLES11RenderingContextImpl(CanvasElementEx canvas)
     : base(canvas.Width, canvas.Height)
 {
     _canvas = canvas;
     gl = canvas.GetContextWebGL();
Esempio n. 8
0
 public Pattern CreatePattern(CanvasElementEx canvas, string repetition)
 {
     return(null);
 }
 public override void TexImage2Dx(uint target, int level, uint internalformat, uint format, uint type, CanvasElementEx canvas) { gl.TexImage2D(target, level, internalformat, format, type, canvas); CheckError("texImage2D"); }
Esempio n. 10
0
 public abstract void TexImage2Dx(uint target, int level, uint internalformat, uint format, uint type, CanvasElementEx canvas);
 public WebGL15ContextImpl(CanvasElementEx canvas)
     : base(canvas.Width, canvas.Height)
 {
     _canvas = canvas;
     gl      = canvas.GetContextWebGL();
 public void TexSubImage2D(uint target, int level, int xoffset, int yoffset, uint format, uint type, CanvasElementEx canvas)
 {
 }
 public void TexImage2D(uint target, int level, uint internalformat, uint format, uint type, CanvasElementEx canvas)
 {
 }