From 4d2ccc92dff3ede8ec6121d8f139aab0e2355b86 Mon Sep 17 00:00:00 2001 From: faiface <faiface@ksp.sk> Date: Sun, 22 Jan 2017 13:45:24 +0100 Subject: [PATCH] add pixelgl.Texture.SetPixels/Pixels --- pixelgl/texture.go | 43 +++++++++++++++++++++++++++++++++++++++---- 1 file changed, 39 insertions(+), 4 deletions(-) diff --git a/pixelgl/texture.go b/pixelgl/texture.go index 24eb6a9..05b2987 100644 --- a/pixelgl/texture.go +++ b/pixelgl/texture.go @@ -17,10 +17,6 @@ type Texture struct { // NewTexture creates a new texture with the specified width and height with some initial // pixel values. The pixels must be a sequence of RGBA values. func NewTexture(width, height int, smooth bool, pixels []uint8) *Texture { - if len(pixels) != width*height*4 { - panic("failed to create new texture: wrong number of pixels") - } - tex := &Texture{ tex: binder{ restoreLoc: gl.TEXTURE_BINDING_2D, @@ -37,6 +33,7 @@ func NewTexture(width, height int, smooth bool, pixels []uint8) *Texture { tex.Begin() defer tex.End() + // initial data gl.TexImage2D( gl.TEXTURE_2D, 0, @@ -83,6 +80,44 @@ func (t *Texture) Height() int { return t.height } +// SetPixels sets the content of a sub-region of the Texture. Pixels must be an RGBA byte sequence. +func (t *Texture) SetPixels(x, y, w, h int, pixels []uint8) { + if len(pixels) != w*h*4 { + panic("set pixels: wrong number of pixels") + } + gl.TexSubImage2D( + gl.TEXTURE_2D, + 0, + int32(x), + int32(y), + int32(w), + int32(h), + gl.RGBA, + gl.UNSIGNED_BYTE, + gl.Ptr(pixels), + ) +} + +// Pixels returns the content of a sub-region of the Texture as an RGBA byte sequence. +func (t *Texture) Pixels(x, y, w, h int) []uint8 { + pixels := make([]uint8, w*h*4) + gl.GetTextureSubImage( + gl.TEXTURE_2D, + 0, + int32(x), + int32(y), + 0, + int32(w), + int32(h), + 0, + gl.RGBA, + gl.UNSIGNED_BYTE, + int32(len(pixels)), + gl.Ptr(pixels), + ) + return pixels +} + // Begin binds a texture. This is necessary before using the texture. func (t *Texture) Begin() { t.tex.bind() -- GitLab