当前位置: 首页>>代码示例>>Golang>>正文


Golang Surface.GetClipRect方法代码示例

本文整理汇总了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()
	}
}
开发者ID:manveru,项目名称:raptgo,代码行数:28,代码来源:raptgo.go


注:本文中的github.com/banthar/Go-SDL/sdl.Surface.GetClipRect方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。