Update placefile icon texture coordinates when the texture atlas changes

This commit is contained in:
Dan Paulat 2023-08-19 22:52:38 -05:00
parent e021484bfb
commit 565734217b
7 changed files with 55 additions and 16 deletions

View file

@ -52,6 +52,11 @@ gl::OpenGLFunctions& GlContext::gl()
return p->gl_;
}
std::uint64_t GlContext::texture_buffer_count() const
{
return p->textureBufferCount_;
}
std::shared_ptr<gl::ShaderProgram>
GlContext::GetShaderProgram(const std::string& vertexPath,
const std::string& fragmentPath)