コード例 #1
0
ファイル: fxeffect.go プロジェクト: go3d/go-collada
//	Adds a new GLSL profile to the specified effect definition (even if it already contains one).
func FxAddProfileGlsl(def *cdom.FxEffectDef) (prof *cdom.FxProfile) {
	prof = cdom.NewProfile()
	prof.Glsl = cdom.NewFxProfileGlsl()
	def.Profiles = append(def.Profiles, prof)
	return
}
コード例 #2
0
ファイル: impinits.go プロジェクト: go3d/go-collada
func init_FxProfileGlsl(xn *xmlx.Node) (obj *cdom.FxProfileGlsl) {
	obj = cdom.NewFxProfileGlsl()

	load_FxProfileGlsl(xn, obj)
	return
}