mirror of
https://github.com/clockworkpi/LauncherGoDev.git
synced 2025-12-14 08:58:51 +01:00
17 lines
198 B
Go
17 lines
198 B
Go
package surface
|
|
|
|
import (
|
|
"github.com/veandco/go-sdl2/sdl"
|
|
)
|
|
|
|
|
|
func FillRect(surface *sdl.Surface,rect *sdl.Rect, color uint32) {
|
|
|
|
sdl.Do(func() {
|
|
surface.FillRect(rect,color)
|
|
})
|
|
|
|
return
|
|
}
|
|
|