我正在为我的学校的计算机科学俱乐部开发一个项目,并试图同时学习Pygame / PyOpenGL。
现在我只是想做一些基本的事情。我正在尝试使用Pygame和PyOpenGL在窗口中渲染图像。这是我的代码的link(我不确定Github存储库是否正常)。
按要求提供代码(在github上阅读该代码比较容易):
import pygame
from OpenGL.GL import *
from OpenGL.GL import shaders
import unittest
import numpy as np
from ctypes import sizeof, c_float, c_void_p
def renderSplash(image):
# using resources in open gl generally follows the form of generate, bind, modify
# Generate: request a buffer for our vertices
vbo = glGenBuffers(1)
# Bind: set the newly requested buffer as the active GL_ARRAY_BUFFER.
# All subsequent modifications of GL_ARRAY_BUFFER will affect our vbo
glBindBuffer(GL_ARRAY_BUFFER, vbo)
# Modify: Tell OpenGL to load data into the buffer.
# I've added two more coordinates to each vertex here for determining the position within the texture.
# These two additional coordinates are typically refered to as uv coordinates.
# Also there are now two triangles that cover the entire viewport.
vertex_data = np.array([-1, -1, 0, 0, -1, 1, 0, 1, 1, 1, 1, 1, -1, -1, 0, 0, 1, 1, 1, 1, 1, -1, 1, 0], np.float32)
glBufferData(GL_ARRAY_BUFFER, vertex_data, GL_STATIC_DRAW)
vertex_position_attribute_location = 0
uv_attribute_location = 1
# glVertexAttribPointer basically works in the same way as glVertexPointer with two exceptions:
# First, it can be used to set the data source for any vertex attributes.
# Second, it has an option to normalize the data, which I have set to GL_FALSE.
glVertexAttribPointer(vertex_position_attribute_location, 2, GL_FLOAT, GL_FALSE, sizeof(c_float)*4, c_void_p(0))
# vertex attributes need to be enabled
glEnableVertexAttribArray(0)
glVertexAttribPointer(uv_attribute_location, 2, GL_FLOAT, GL_FALSE, sizeof(c_float)*4, c_void_p(sizeof(c_float)*2))
glEnableVertexAttribArray(1)
# Generate: request a texture
image_texture = glGenTextures(1)
# Bind: set the newly requested texture as the active GL_TEXTURE_2D.
# All subsequent modifications of GL_TEXTURE_2D will affect our texture (or how it is used)
glBindTexture(GL_TEXTURE_2D, image_texture)
width = image.get_width()
height = image.get_height()
# retrieve a byte string representation of the image.
# The 3rd parameter tells pygame to return a vertically flipped image, as the coordinate system used
# by pygame differs from that used by OpenGL
image_data = pygame.image.tostring(image, "RGBA", True)
# Modify: Tell OpenGL to load data into the image
mip_map_level = 0
glTexImage2D(GL_TEXTURE_2D, mip_map_level, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, image_data)
# set the filtering mode for the texture
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST)
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST)
vertex_shader = shaders.compileShader("""
#version 330
layout(location = 0) in vec2 pos;
layout(location = 1) in vec2 uvIn;
out vec2 uv;
void main() {
gl_Position = vec4(pos, 0, 1);
uv = uvIn;
}
""", GL_VERTEX_SHADER)
fragment_shader = shaders.compileShader("""
#version 330
out vec4 fragColor;
in vec2 uv;
uniform sampler2D tex;
void main() {
fragColor = texture(tex, uv);
}
""", GL_FRAGMENT_SHADER)
shader_program = shaders.compileProgram(vertex_shader, fragment_shader)
glEnableClientState(GL_VERTEX_ARRAY)
# Enable alpha blending
glEnable(GL_BLEND)
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA)
glUseProgram(shader_program)
glDrawArrays(GL_TRIANGLES, 0, 6)
def main():
pygame.quit()
pygame.init()
image = pygame.image.load("Background.jpg")
width = image.get_width()
height = image.get_height()
# width = 1920
# height = 1080
size = (width,height)
pygame.display.set_mode(size, pygame.OPENGL | pygame.DOUBLEBUF | pygame.HWSURFACE)
glViewport(0, 0, width, height)
renderSplash(image)
pygame.display.flip()
close_window()
def close_window():
key_pressed = False
while not key_pressed:
for event in pygame.event.get():
if event.type == pygame.KEYDOWN:
key_pressed = True
main()
我的问题是,当我在桌面上运行SplashScreen.py(Win10 Pro,1903,操作系统内部版本18362.86,Python 3.7.2)时,得到以下信息
以请求的文本格式输出:
pygame 1.9.6
Hello from the pygame community. https://www.pygame.org/contribute.html
Traceback (most recent call last):
File "SplashScreen.py", line 122, in <module>
main()
File "SplashScreen.py", line 111, in main
renderSplash(image)
File "SplashScreen.py", line 95, in renderSplash
glDrawArrays(GL_TRIANGLES, 0, 6)
File "C:\Users\LukeJ\AppData\Roaming\Python\Python37\site-packages\OpenGL\platform\baseplatform.py", line 402, in __call__
return self( *args, **named )
OSError: exception: access violation reading 0x0000000000000000
但是,如果我在笔记本电脑上运行此代码(Win10 Pro,1903,操作系统内部版本18362.86,Python 3.7.2),则可以正常运行。
我在代码中做错了吗?我需要做些什么来测试该问题并希望在我的代码中对其进行修复?
答案 0 :(得分:1)
删除
glEnableClientState(GL_VERTEX_ARRAY)
您的代码将可用。
glEnableClientState(GL_VERTEX_ARRAY)
启用客户端的顶点坐标功能,它激活了已弃用的固定函数属性,并且与Legacy OpenGL有关。
这与顶点属性规范和glEnableVertexAttribArray(0)
相抵触。
固定功能顶点坐标必须由glVertexPointer
而不是glVertexAttribPointer
定义。 发生“访问冲突读取0x0000000000000000” ,因为没有固定功能函数顶点数据集,但已启用。