aboutsummaryrefslogtreecommitdiff
path: root/prototypes/xgb-image.go
diff options
context:
space:
mode:
Diffstat (limited to 'prototypes/xgb-image.go')
-rw-r--r--prototypes/xgb-image.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/prototypes/xgb-image.go b/prototypes/xgb-image.go
index b8bf145..e93fe60 100644
--- a/prototypes/xgb-image.go
+++ b/prototypes/xgb-image.go
@@ -115,6 +115,7 @@ func main() {
// XXX: We don't /need/ alpha here, it's just a minor improvement--affects
// the backpixel value. (And we reject it in 30-bit depth anyway.)
+Depths:
for _, i := range screen.AllowedDepths {
for _, v := range i.Visuals {
// TODO: Could/should check other parameters, e.g., the RGB masks.
@@ -124,7 +125,7 @@ func main() {
if i.Depth == 32 || i.Depth == 30 && prefer30 {
visual, depth = v.VisualId, i.Depth
if !prefer30 || i.Depth == 30 {
- break
+ break Depths
}
}
}