Revision 6454151bd41eb2c7e1dfc079b90f27fc62be77d6 authored by Philip Trettner on 17 April 2022, 08:24:26 UTC, committed by Philip Trettner on 17 April 2022, 08:24:26 UTC
Update xxHash source files See merge request Glow/glow!40
callbacks.cc
#include "callbacks.hh"
#include "objects/Framebuffer.hh"
#include "objects/Program.hh"
void glow::notifyShaderExecuted()
{
// notify Shader
auto shader = Program::getCurrentProgram();
if (shader)
{
shader->program->validateTextureMipmaps();
shader->program->checkUnchangedUniforms();
}
// notify FBO
auto fbo = Framebuffer::getCurrentBuffer();
if (fbo != nullptr)
fbo->buffer->notifyShaderExecuted();
}

Computing file changes ...