Caleb Whiting

Results 67 comments of Caleb Whiting

Example doesn't crash anymore. Yeah! [Here](https://imgur.com/ZjIWcoq) is a short video showing the launch sequence. I don't see the tiger for even one frame, but maybe it's still caused by the...

I just tested most of the webrender examples and they run fine. 🤔

Sounds good. I hope to have time to try your suggestions tomorrow.

After some fiddling I realized that I can get the gray square to display by resizing the window. The layout is all messed up but it works! This is true...

To summarize, forcing an update every 16ms doesn't seem to help. What seems to work is the following: * Moving the window between screens. Works every time, no layout issues....

Switching to software rendering doesn't change anything. It still shows a black screen until I move the window to another monitor. To help me separate signal from noise in the...

Adding `|| true` to if statement on line 216 of app.rs causes it to draw correctly.

EDIT: removed comment because it was incorrect.

I can get the initial re-draw to work by changing https://github.com/maps4print/azul/blob/2a9e4ce4866d3473df7ffc72cd58ec1056bb45c6/src/app.rs#L146 from this: ```rust let mut force_redraw_cache = vec![0_usize; self.windows.len()]; ``` to this: ```rust let mut force_redraw_cache = vec![1_usize; self.windows.len()];...

Just opened #7 which seems to cleanly fix the problem. Unfortunately I still don't know the root cause, but it most be somehow related to difference between the code that...