Documentation ¶
Index ¶
- Variables
- func Init(runOnMainThread func(func() error) error)
- type Buffer
- type BufferType
- type BufferUsage
- type CompositeMode
- type Context
- func (c *Context) BindElementArrayBuffer(b Buffer)
- func (c *Context) BindScreenFramebuffer() error
- func (c *Context) BindTexture(t Texture) error
- func (c *Context) BlendFunc(mode CompositeMode)
- func (c *Context) BufferSubData(bufferType BufferType, data []float32)
- func (c *Context) DeleteBuffer(b Buffer)
- func (c *Context) DeleteFramebuffer(f Framebuffer)
- func (c *Context) DeleteProgram(p Program)
- func (c *Context) DeleteShader(s Shader)
- func (c *Context) DeleteTexture(t Texture)
- func (c *Context) DisableVertexAttribArray(p Program, location string)
- func (c *Context) DrawElements(mode Mode, len int, offsetInBytes int)
- func (c *Context) EnableVertexAttribArray(p Program, location string)
- func (c *Context) FillFramebuffer(r, g, b, a float64) error
- func (c *Context) Flush()
- func (c *Context) FramebufferPixels(f Framebuffer, width, height int) ([]uint8, error)
- func (c *Context) GlslHighpSupported() bool
- func (c *Context) IsTexture(t Texture) bool
- func (c *Context) NewBuffer(bufferType BufferType, v interface{}, bufferUsage BufferUsage) Buffer
- func (c *Context) NewFramebuffer(texture Texture) (Framebuffer, error)
- func (c *Context) NewProgram(shaders []Shader) (Program, error)
- func (c *Context) NewShader(shaderType ShaderType, source string) (Shader, error)
- func (c *Context) NewTexture(width, height int, pixels []uint8, filter Filter) (Texture, error)
- func (c *Context) Reset() error
- func (c *Context) ResetViewportSize()
- func (c *Context) ScreenFramebuffer() Framebuffer
- func (c *Context) SetViewport(f Framebuffer, width, height int) error
- func (c *Context) TexSubImage2D(p []uint8, width, height int)
- func (c *Context) UniformFloats(p Program, location string, v []float32)
- func (c *Context) UniformInt(p Program, location string, v int)
- func (c *Context) UseProgram(p Program)
- func (c *Context) VertexAttribPointer(p Program, location string, size int, dataType DataType, normalize bool, ...)
- type DataType
- type Filter
- type Framebuffer
- type Mode
- type Program
- type Shader
- type ShaderType
- type Texture
Constants ¶
This section is empty.
Variables ¶
View Source
var ( Nearest Filter Linear Filter VertexShader ShaderType FragmentShader ShaderType ArrayBuffer BufferType ElementArrayBuffer BufferType DynamicDraw BufferUsage StaticDraw BufferUsage Triangles Mode Lines Mode Short DataType Float DataType )
Functions ¶
Types ¶
type BufferType ¶ added in v1.1.0
type BufferType int
type BufferUsage ¶ added in v1.5.0
type BufferUsage int
type CompositeMode ¶ added in v1.5.0
type CompositeMode int
const ( CompositeModeSourceOver CompositeMode = iota // This value must be 0 (= initial value) CompositeModeClear CompositeModeCopy CompositeModeDestination CompositeModeDestinationOver CompositeModeSourceIn CompositeModeDestinationIn CompositeModeSourceOut CompositeModeDestinationOut CompositeModeSourceAtop CompositeModeDestinationAtop CompositeModeXor CompositeModeLighter CompositeModeUnknown )
type Context ¶ added in v1.1.0
type Context struct {
// contains filtered or unexported fields
}
func GetContext ¶ added in v1.5.0
func GetContext() *Context
func (*Context) BindElementArrayBuffer ¶ added in v1.5.0
func (*Context) BindScreenFramebuffer ¶ added in v1.5.0
func (*Context) BindTexture ¶ added in v1.1.0
func (*Context) BlendFunc ¶ added in v1.5.0
func (c *Context) BlendFunc(mode CompositeMode)
func (*Context) BufferSubData ¶ added in v1.1.0
func (c *Context) BufferSubData(bufferType BufferType, data []float32)
func (*Context) DeleteBuffer ¶ added in v1.5.0
func (*Context) DeleteFramebuffer ¶ added in v1.1.0
func (c *Context) DeleteFramebuffer(f Framebuffer)
func (*Context) DeleteProgram ¶ added in v1.5.0
func (*Context) DeleteShader ¶ added in v1.1.0
func (*Context) DeleteTexture ¶ added in v1.1.0
func (*Context) DisableVertexAttribArray ¶ added in v1.1.0
func (*Context) DrawElements ¶ added in v1.1.0
func (*Context) EnableVertexAttribArray ¶ added in v1.1.0
func (*Context) FillFramebuffer ¶ added in v1.1.0
func (*Context) FramebufferPixels ¶ added in v1.1.0
func (c *Context) FramebufferPixels(f Framebuffer, width, height int) ([]uint8, error)
func (*Context) GlslHighpSupported ¶ added in v1.1.0
func (*Context) NewBuffer ¶ added in v1.1.0
func (c *Context) NewBuffer(bufferType BufferType, v interface{}, bufferUsage BufferUsage) Buffer
func (*Context) NewFramebuffer ¶ added in v1.1.0
func (c *Context) NewFramebuffer(texture Texture) (Framebuffer, error)
func (*Context) NewProgram ¶ added in v1.1.0
func (*Context) NewShader ¶ added in v1.1.0
func (c *Context) NewShader(shaderType ShaderType, source string) (Shader, error)
func (*Context) NewTexture ¶ added in v1.1.0
func (*Context) ResetViewportSize ¶ added in v1.5.0
func (c *Context) ResetViewportSize()
func (*Context) ScreenFramebuffer ¶ added in v1.5.0
func (c *Context) ScreenFramebuffer() Framebuffer
func (*Context) SetViewport ¶ added in v1.1.0
func (c *Context) SetViewport(f Framebuffer, width, height int) error
func (*Context) TexSubImage2D ¶ added in v1.5.0
func (*Context) UniformFloats ¶ added in v1.1.0
func (*Context) UniformInt ¶ added in v1.1.0
func (*Context) UseProgram ¶ added in v1.1.0
type Framebuffer ¶
type Framebuffer uint32
type ShaderType ¶ added in v1.1.0
type ShaderType int
Click to show internal directories.
Click to hide internal directories.