Pygame OpenGL获取窗口大小

发布于 2025-01-17 07:26:42 字数 218 浏览 0 评论 0原文

我正在开发一个 pygame opengl 项目。我有一个可调整大小的窗口,但我无法确定它的大小。以下方法仅返回窗口的原始大小,而不是当前大小(调整大小后):

pygame.display.get_surface().get_size()

screen.get_width(),screen.get_height()

任何帮助将不胜感激。

I am working on a pygame opengl project. I have a resizable window, but I'm having trouble getting the size of it. The following methods only return the original size of the window, not the current size (after it has been resized):

pygame.display.get_surface().get_size()

screen.get_width(),screen.get_height()

Any help would be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

辞别 2025-01-24 07:26:42

我找到了解决这个问题的方法。如果您遇到同样的问题,请使用以下方法:

size = numpy.ndarray.tolist(glGetIntegerv(GL_VIEWPORT))
size = size[2],size[3]

I found a solution to this. Use the following if you have the same problem:

size = numpy.ndarray.tolist(glGetIntegerv(GL_VIEWPORT))
size = size[2],size[3]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文