Exemplo n.º 1
0
        public void Bind()
        {
#if DEBUG
            BindState.Get().SetBoundFrameBuffer(DebugName);
#endif
            GL.BindFramebuffer(FramebufferTarget.Framebuffer, frameBufferObject);
            bBind = true;
        }
Exemplo n.º 2
0
        public void Unbind()
        {
            if (IsBind)
            {
#if DEBUG
                BindState.Get().SetBoundFrameBuffer("");
#endif
                GL.BindFramebuffer(FramebufferTarget.Framebuffer, 0);
                bBind = false;
            }
        }