码迷,mamicode.com
首页 > Windows程序 > 详细

PyOpenGL TypeError in glutCreateWindow

时间:2019-09-19 13:58:22      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:字符   错误   spec   类型   creat   str   pass   create   asi   

使用pyopengl时,窗口标题出现TypeError的错误,查看StackOverflow得知,传入的是字符串类型需要改为如下形式:

wintitle = b"Yixn for PyOpengl"
glutCreateWindow(wintitle)

Basically you need to specify that you are passing byte data rather than a string using b‘Window Title‘

PyOpenGL TypeError in glutCreateWindow

标签:字符   错误   spec   类型   creat   str   pass   create   asi   

原文地址:https://www.cnblogs.com/structurer/p/11548638.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!