From 79ef8d51ebb7b4c24b60975664a47230ca937b34 Mon Sep 17 00:00:00 2001 From: faiface <faiface@ksp.sk> Date: Sun, 22 Jan 2017 02:38:04 +0100 Subject: [PATCH] remove pixelgl.Viewport, because Frame sets viewport --- pixelgl/frame.go | 3 +-- pixelgl/orphan.go | 5 ----- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/pixelgl/frame.go b/pixelgl/frame.go index 1a6021d..c2ca761 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 111c261..24f784a 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) -} -- GitLab