This commit is contained in:
Samuel Guerra 2023-08-11 22:14:03 -03:00
parent fb002e7eea
commit 2837d7528f
2 changed files with 7 additions and 8 deletions

View File

@ -24,16 +24,15 @@
# Transform 3D # Transform 3D
* Perspective (and origin) is computed on the parent. * Fix the cube example.
- Firefox creates a stacking-context for the perspective transform on its own. - Nested 3D broken?
- There is a `paired_with_perspective` flag in the stacking-context.
- Fix the cube example.
* Implement perspective render_update. * Implement perspective render_update.
- For now transform updates request full render (!!:). - For now transform updates request full render (!!:).
* backface_visible, sets webrender `PrimitiveFlags::IS_BACKFACE_VISIBLE`. * backface_visible, sets webrender `PrimitiveFlags::IS_BACKFACE_VISIBLE`.
- Flag can be set in any primitive, figure out why? - Flag can be set in any primitive, figure out why?
- Can we just have a context push? - Can we just have a context push?
- For now is enabled for all display items.
# WR Items # WR Items

View File

@ -1,7 +1,7 @@
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] #![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
use zero_ui::prelude::*; use zero_ui::prelude::*;
// use zero_ui_view_prebuilt as zero_ui_view; // use zero_ui_view_prebuilt as zero_ui_view; // !!:
fn main() { fn main() {
examples_util::print_info(); examples_util::print_info();