Skip to content

Commit

Permalink
Actually generate DownscaleFramebuffer (melonDS-emu#2059)
Browse files Browse the repository at this point in the history
  • Loading branch information
CasualPokePlayer authored Jun 8, 2024
1 parent a72b79a commit 8e9b88d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/GPU3D_OpenGL.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ std::unique_ptr<GLRenderer> GLRenderer::New() noexcept
glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(IndexBuffer), nullptr, GL_DYNAMIC_DRAW);

glGenFramebuffers(1, &result->MainFramebuffer);
glGenFramebuffers(1, &result->DownscaleFramebuffer);

// color buffers
glGenTextures(1, &result->ColorBufferTex);
Expand Down

0 comments on commit 8e9b88d

Please sign in to comment.