本文整理汇总了Golang中golang.org/x/mobile/gl.Context.GetIntegerv方法的典型用法代码示例。如果您正苦于以下问题:Golang Context.GetIntegerv方法的具体用法?Golang Context.GetIntegerv怎么用?Golang Context.GetIntegerv使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类golang.org/x/mobile/gl.Context
的用法示例。
在下文中一共展示了Context.GetIntegerv方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: StartSample
func (buf *TextureFramebuffer) StartSample(ctx gl.Context) {
buf.fbo.Bind(ctx, buf.withtex)
ctx.GetIntegerv(int32v4, gl.VIEWPORT)
ctx.Viewport(0, 0, buf.w, buf.h)
ctx.ClearColor(0, 0, 0, 0)
ctx.Clear(gl.COLOR_BUFFER_BIT)
}
示例2: unproject
func unproject(glctx gl.Context, x, y float32) (mgl32.Vec3, mgl32.Vec3) {
var wx, wy float32
var viewport [4]int32
glctx.GetIntegerv(viewport[:], gl.VIEWPORT)
wx = x
wy = float32(viewport[3]) - y
posStart, err := mgl32.UnProject(mgl32.Vec3{wx, wy, 0}, arcball.getMtx(), projectionMtx, int(viewport[0]), int(viewport[1]), int(viewport[2]), int(viewport[3]))
posEnd, err := mgl32.UnProject(mgl32.Vec3{wx, wy, 1}, arcball.getMtx(), projectionMtx, int(viewport[0]), int(viewport[1]), int(viewport[2]), int(viewport[3]))
if err != nil {
log.Printf("unable to unproject: %+v", err)
}
return posStart, posEnd
}