python - 使用 PyOpenGL 在 Pygame 中渲染图像

标签 python opengl pygame pyopengl

我正在为我学校的计算机科学俱乐部做一个项目,同时尝试学习 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)时,我得到以下信息 error

按要求以文本格式输出:

                                                      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)上运行这段代码,它运行良好。

我的代码是不是做错了什么?我需要做什么来测试这个问题并希望在我的代码中修复它?

最佳答案

删除

glEnableClientState(GL_VERTEX_ARRAY)

您的代码将起作用。

glEnableClientState(GL_VERTEX_ARRAY)启用顶点坐标的客户端功能,它激活已弃用的固定功能属性并与 Legacy OpenGL 有关.
这抵消了顶点属性规范和 glEnableVertexAttribArray(0) .
固定函数顶点坐标必须由 glVertexPointer 定义而不是 glVertexAttribPointer . 出现“访问冲突读取 0x0000000000000000”,因为没有固定函数函数顶点数据集,但已启用。

关于python - 使用 PyOpenGL 在 Pygame 中渲染图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56122387/

相关文章:

python-3.x - 无法使用 .png 文件在 Pygame 上设置图标

python - 阅读消息时无附件(无法保存附件)

python - 如何从 Python 脚本调用可执行文件?

python - (psycopg2.OperationalError) SSL 错误 : certificate verify failed

python - Cython -std=c++11 错误,同时使用 C 和 C++

c++ - OpenGL GL_UNPACK_ALIGNMENT

python - Python 3.4 中的 Pygame 错误

python - 如何将图像blit到pygame中与矩形大小相同的表面

c++ - 如何将音频与功率谱同步并选择帧长度 AND(做 fft)?

c++ - 断言加载文件失败