Merge a36cfb17b4
into 0a251bc08b
This commit is contained in:
commit
3b3c7d8ba5
|
@ -49,7 +49,7 @@ var defaultCanvasVertexFormat = glhf.AttrFormat{
|
|||
canvasClip: glhf.Attr{Name: "aClipRect", Type: glhf.Vec4},
|
||||
}
|
||||
|
||||
// Sets up a base shader with everything needed for a Pixel
|
||||
// NewGLShader sets up a base shader with everything needed for a Pixel
|
||||
// canvas to render correctly. The defaults can be overridden
|
||||
// by simply using the SetUniform function.
|
||||
func NewGLShader(fragmentShader string) *GLShader {
|
||||
|
@ -109,7 +109,7 @@ func (gs *GLShader) getUniform(Name string) int {
|
|||
// SetUniform appends a custom uniform name and value to the shader.
|
||||
// if the uniform already exists, it will simply be overwritten.
|
||||
//
|
||||
// example:
|
||||
// Example:
|
||||
//
|
||||
// utime := float32(time.Since(starttime)).Seconds())
|
||||
// mycanvas.shader.AddUniform("u_time", &utime)
|
||||
|
|
|
@ -527,6 +527,14 @@ func (w *Window) Show() {
|
|||
})
|
||||
}
|
||||
|
||||
// Hide hides the window, if it was previously visible. If the window is already
|
||||
// hidden or is in full screen mode, this function does nothing.
|
||||
func (w *Window) Hide() {
|
||||
mainthread.Call(func() {
|
||||
w.window.Hide()
|
||||
})
|
||||
}
|
||||
|
||||
// Clipboard returns the contents of the system clipboard.
|
||||
func (w *Window) Clipboard() string {
|
||||
var clipboard string
|
||||
|
@ -536,7 +544,7 @@ func (w *Window) Clipboard() string {
|
|||
return clipboard
|
||||
}
|
||||
|
||||
// SetClipboardString sets the system clipboard to the specified UTF-8 encoded string.
|
||||
// SetClipboard sets the system clipboard to the specified UTF-8 encoded string.
|
||||
func (w *Window) SetClipboard(str string) {
|
||||
mainthread.Call(func() {
|
||||
w.window.SetClipboardString(str)
|
||||
|
|
Loading…
Reference in New Issue