avoid cheese comment alignment
This commit is contained in:
parent
c9f445787e
commit
2848ee5c0c
|
@ -372,9 +372,10 @@ func (wt *windowTriangles) Len() int {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (wt *windowTriangles) Draw() {
|
func (wt *windowTriangles) Draw() {
|
||||||
pic := wt.w.pic // avoid
|
// avoid possible race condition
|
||||||
mat := wt.w.mat // race
|
pic := wt.w.pic
|
||||||
col := wt.w.col // condition
|
mat := wt.w.mat
|
||||||
|
col := wt.w.col
|
||||||
bnd := wt.w.bnd
|
bnd := wt.w.bnd
|
||||||
|
|
||||||
pixelgl.DoNoBlock(func() {
|
pixelgl.DoNoBlock(func() {
|
||||||
|
|
Loading…
Reference in New Issue