Add cache sync flag in Context::enqueueBatch

This commit is contained in:
Ryan Huffman 2015-05-22 15:34:05 -07:00
parent d1a5662ca7
commit bffcfa2ab8

View file

@ -32,5 +32,5 @@ bool Context::makeProgram(Shader& shader, const Shader::BindingSet& bindings) {
}
void Context::enqueueBatch(Batch& batch) {
GLBackend::renderBatch(batch);
GLBackend::renderBatch(batch, true);
}