fmt
This commit is contained in:
parent
fb002e7eea
commit
2837d7528f
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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();
|
||||||
|
|
Loading…
Reference in New Issue