示例#1
0
文件: video.go 项目: DeedleFake/sdl
func GL_SetAttribute(attr GLattr, val int) error {
	if C.SDL_GL_SetAttribute(C.SDL_GLattr(attr), C.int(val)) != 0 {
		return getError()
	}

	return nil
}
示例#2
0
文件: video.go 项目: krig/Go-SDL2
func GL_GetAttribute(attr int) (int, error) {
	var value C.int = 0
	ret := C.SDL_GL_GetAttribute(C.SDL_GLattr(attr), &value)
	if ret == 0 {
		return int(value), NewSDLError()
	}
	return int(value), nil
}
示例#3
0
文件: video.go 项目: DeedleFake/sdl
func GL_GetAttribute(attr GLattr) (int, error) {
	var val C.int
	if C.SDL_GL_GetAttribute(C.SDL_GLattr(attr), &val) != 0 {
		return 0, getError()
	}

	return int(val), nil
}
示例#4
0
文件: sdl.go 项目: kearsley/Go-SDL
func GL_SetAttribute(attr int, value int) int {
	GlobalMutex.Lock()
	status := int(C.SDL_GL_SetAttribute(C.SDL_GLattr(attr), C.int(value)))
	GlobalMutex.Unlock()
	return status
}
示例#5
0
文件: sdl.go 项目: gnanderson/Go-SDL
func GL_SetAttribute(attr int, value int) int {
	return int(C.SDL_GL_SetAttribute(C.SDL_GLattr(attr), C.int(value)))
}
示例#6
0
文件: video.go 项目: henkman/Go2D
func GL_SetAttribute(attribute GLattr, value int) (err error) {
	if C.SDL_GL_SetAttribute(C.SDL_GLattr(attribute), C.int(value)) != 0 {
		return errors.New(C.GoString(C.SDL_GetError()))
	}
	return nil
}
示例#7
0
文件: video.go 项目: krig/Go-SDL2
func GL_SetAttribute(attr int, value int) int {
	status := int(C.SDL_GL_SetAttribute(C.SDL_GLattr(attr), C.int(value)))
	return status
}
示例#8
0
文件: video.go 项目: flazz/go-sdl2
func (attr GLattr) c() C.SDL_GLattr {
	return C.SDL_GLattr(attr)
}
示例#9
0
文件: video.go 项目: beoran/fungo
// Get an attribute of the OpenGL subsystem from the windowing
// interface, such as glX. This is of course different from getting
// the values from SDL's internal OpenGL subsystem, which only
// stores the values you request before initialization.
//
// Developers should track the values they pass into SDL_GL_SetAttribute
// themselves if they want to retrieve these values.
// extern DECLSPEC int SDLCALL SDL_GL_GetAttribute(SDL_GLattr attr, int* value);
func GLGetAttribute(attr int) (int, int) {
	var value C.int
	res := int(C.SDL_GL_GetAttribute(C.SDL_GLattr(attr), &value))
	return res, int(value)
}