static const std::string DISPLAY_FRAGMENT_SHADER_CODE = R"( #version 330 core out vec4 FragColor; in vec2 TexCoords; uniform sampler2D screen_texture; void main() { FragColor = texture(screen_texture, TexCoords); } )";