diff --git a/pixelgl/frame.go b/pixelgl/frame.go index 1a6021ddebc5aa532ea6768ab8ff9fd8b7cbaed7..c2ca761d1a1d5e9b7a2f6767310cfdbcd16905a8 100644 --- a/pixelgl/frame.go +++ b/pixelgl/frame.go @@ -1,7 +1,6 @@ package pixelgl import ( - "fmt" "runtime" "github.com/faiface/mainthread" @@ -29,7 +28,6 @@ func NewFrame(width, height int, smooth bool) *Frame { } gl.GenFramebuffers(1, &f.fb.obj) - fmt.Println(f.fb.obj) f.tex = NewTexture(width, height, smooth, make([]uint8, width*height*4)) @@ -61,6 +59,7 @@ func (f *Frame) Height() int { // Begin binds the Frame. All draw operations will target this Frame until End is called. func (f *Frame) Begin() { f.fb.bind() + gl.Viewport(0, 0, int32(f.width), int32(f.height)) } // End unbinds the Frame. All draw operations will go to whatever was bound before this Frame. diff --git a/pixelgl/orphan.go b/pixelgl/orphan.go index 111c2614e8f1d4aafdac646018089ea977a78429..24f784a84fb35e727c8ecf80710dc43dc3901fd9 100644 --- a/pixelgl/orphan.go +++ b/pixelgl/orphan.go @@ -21,8 +21,3 @@ func Clear(r, g, b, a float32) { gl.ClearColor(r, g, b, a) gl.Clear(gl.COLOR_BUFFER_BIT) } - -// Viewport sets the OpenGL viewport. -func Viewport(x, y, w, h int32) { - gl.Viewport(x, y, w, h) -}