本文整理汇总了Golang中github.com/banthar/Go-SDL/sdl.Surface.GetClipRect方法的典型用法代码示例。如果您正苦于以下问题:Golang Surface.GetClipRect方法的具体用法?Golang Surface.GetClipRect怎么用?Golang Surface.GetClipRect使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/banthar/Go-SDL/sdl.Surface
的用法示例。
在下文中一共展示了Surface.GetClipRect方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: DrawTextLines
// draw lines of text aligned around center of screen
func DrawTextLines(strings []string) {
var dstrect, srcrect *sdl.Rect
var line *sdl.Surface
var w, h, prevH uint16
centerX := int16(Width / 2)
centerY := int16(Height / 2)
for _, str := range strings {
line = RenderText(str, Red)
line.GetClipRect(srcrect)
w, h = uint16(line.W), uint16(line.H)
dstrect = &sdl.Rect{
X: centerX - int16(w/2),
Y: (centerY + int16(prevH)) - int16(h/2),
W: w,
H: h,
}
prevH += h
Screen.Blit(dstrect, line, srcrect)
line.Free()
}
}