little fix to the previous

This commit is contained in:
zeromus 2014-02-03 08:11:13 +00:00
parent 4a753aae17
commit 2ea2649271
1 changed files with 3 additions and 3 deletions

View File

@ -379,9 +379,9 @@ namespace BizHawk.Bizware.BizwareGL.Drivers.OpenTK
GL.Ext.FramebufferTexture2D(FramebufferTarget.Framebuffer, FramebufferAttachment.ColorAttachment0, TextureTarget.Texture2D, texid.ToInt32(), 0);
//do something, I guess say which colorbuffers are used by the framebuffer
//DrawBuffersEnum* buffers = stackalloc DrawBuffersEnum[1];
//buffers[0] = DrawBuffersEnum.ColorAttachment0;
GL.Ext.FramebufferDrawBuffer(0, DrawBufferMode.ColorAttachment0);
DrawBuffersEnum* buffers = stackalloc DrawBuffersEnum[1];
buffers[0] = DrawBuffersEnum.ColorAttachment0;
GL.DrawBuffers(1, buffers);
if (GL.Ext.CheckFramebufferStatus(FramebufferTarget.Framebuffer) != FramebufferErrorCode.FramebufferComplete)
throw new InvalidOperationException("Error creating framebuffer (at CheckFramebufferStatus)");