1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

glfw, freetype: remove the display of general information

This commit is contained in:
yuyi 2020-03-03 21:41:26 +08:00 committed by GitHub
parent 69f256b900
commit 3f67ba08b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 10 deletions

View File

@ -131,7 +131,7 @@ pub fn create_window(c WinCfg) &glfw.Window {
println('failed to create a glfw window, make sure you have a GPU driver installed')
C.glfwTerminate()
}
println('create window wnd=$cwindow ptr==$c.ptr')
// println('create window wnd=$cwindow ptr==$c.ptr')
C.glfwSetWindowUserPointer(cwindow, c.ptr)
window := &glfw.Window {
data: cwindow,
@ -305,4 +305,3 @@ pub fn (size Size) str() string {
pub fn get_window_user_pointer(gwnd voidptr) voidptr {
return C.glfwGetWindowUserPointer(gwnd)
}