示例#1
0
文件: gl.go 项目: james4k/gl
//void glIndexsv (const int16 *c)
func Indexsv(c *[1]int16) {
	C.glIndexsv((*C.GLshort)(&c[0]))
}
示例#2
0
文件: gl.go 项目: Nvveen/gl
//void glIndexsv (const int16 *c)
func Indexsv(c []int16) {
	if len(c) != 1 {
		panic(ErrorInputSize)
	}
	C.glIndexsv((*C.GLshort)(&c[0]))
}