public void bindFramebuffer(int target, Web.WebGLFramebuffer framebuffer) { var bufferId = (int)(framebuffer != null ? framebuffer.Value : 0); #if _DEBUG Log.Info(string.Format("bindFramebuffer {0} {1}", target, bufferId)); #endif Gl.glBindFramebuffer(target, bufferId); ErrorTest(); }
public bool isFramebuffer(Web.WebGLFramebuffer framebuffer) { throw new NotImplementedException(); }
public void deleteFramebuffer(Web.WebGLFramebuffer framebuffer) { throw new NotImplementedException(); }