更新 'framebuffer.go'
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Jay 2020-07-08 15:42:59 +00:00
parent 4dcd1701ea
commit 4229dc260c
1 changed files with 0 additions and 2 deletions

View File

@ -122,8 +122,6 @@ func (f *Framebuffer) SetPixel(x int, y int, r uint32, g uint32, b uint32, a uin
location := (x+f.Xoffset)*(f.BitsPerPixel/8) + (y+f.Yoffset)*f.LineLength
fmt.Println("location :: ", location, " / data len:: ", len(f.Data))
f.Data[location+3] = byte(a & 0xff)
f.Data[location+2] = byte(r & 0xff)
f.Data[location+1] = byte(g & 0xff)