We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0893469 commit ecee8b1Copy full SHA for ecee8b1
azul-core/src/gl.rs
@@ -574,8 +574,14 @@ pub fn gl_textures_remove_active_pipeline(document_id: &DocumentId) {
574
/// Destroys all textures from the pipeline `pipeline_id` where the texture is
575
/// **older** than the given `epoch`.
576
pub fn gl_textures_remove_epochs_from_pipeline(document_id: &DocumentId, epoch: Epoch) {
577
+
578
+ println!("flushing epoch: {:?}", epoch);
579
580
581
// TODO: Handle overflow of Epochs correctly (low priority)
582
unsafe {
583
+ println!("active gl textures: {:#?}", ACTIVE_GL_TEXTURES.as_ref());
584
585
let active_textures = match ACTIVE_GL_TEXTURES.as_mut() {
586
Some(s) => s,
587
None => return,
0 commit comments