blob: 5223873f4de453dc58ba3342fff654e41b8f0daa [file] [log] [blame]
// Copyright 2015 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build windows
package windriver
import (
"image"
"sync"
"syscall"
"golang.org/x/exp/shiny/driver/internal/swizzle"
)
type bufferImpl struct {
hbitmap syscall.Handle
buf []byte
rgba image.RGBA
size image.Point
mu sync.Mutex
nUpload uint32
reusable bool
released bool
cleanedUp bool
}
func (b *bufferImpl) Size() image.Point { return b.size }
func (b *bufferImpl) Bounds() image.Rectangle { return image.Rectangle{Max: b.size} }
func (b *bufferImpl) RGBA() *image.RGBA { return &b.rgba }
func (b *bufferImpl) preUpload(reusable bool) {
b.mu.Lock()
defer b.mu.Unlock()
if b.released {
panic("windriver: Buffer.Upload called after Buffer.Release")
}
if b.nUpload == 0 {
swizzle.BGRA(b.buf)
}
b.nUpload++
b.reusable = b.reusable && reusable
}
func (b *bufferImpl) postUpload() {
b.mu.Lock()
defer b.mu.Unlock()
b.nUpload--
if b.nUpload != 0 {
return
}
if b.released {
go b.cleanUp()
} else if b.reusable {
swizzle.BGRA(b.buf)
}
}
func (b *bufferImpl) Release() {
b.mu.Lock()
defer b.mu.Unlock()
if !b.released && b.nUpload == 0 {
go b.cleanUp()
}
b.released = true
}
func (b *bufferImpl) cleanUp() {
b.mu.Lock()
if b.cleanedUp {
b.mu.Unlock()
panic("windriver: Buffer clean-up occurred twice")
}
b.cleanedUp = true
b.mu.Unlock()
b.rgba.Pix = nil
_DeleteObject(b.hbitmap)
}