Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch from femtovg to skia renderer #461

Draft
wants to merge 43 commits into
base: views-update
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
8801acc
Merge pull request #435 from vizia/views-update
geom3trik Mar 18, 2024
586b7f2
Update README.md
geom3trik Mar 29, 2024
d64632e
Update custom_view.rs
geom3trik Mar 29, 2024
11d51c6
Fix for #467
geom3trik Apr 6, 2024
e9445a2
Removed the `MouseEnter` and `MouseLeave` temporary fix in windows be…
YouKnow-sys Apr 7, 2024
bf6babf
fixed all the clippy warnings
YouKnow-sys Apr 7, 2024
be7624e
Remove the unnecessary `String` and used `&str` directly
YouKnow-sys Apr 7, 2024
e2d3e2e
adds xypad and an example for it
bboettcher3 Apr 7, 2024
ed0ee0e
fix xypad themes
bboettcher3 Apr 7, 2024
77749f6
Remove unnecessary lens clone
geom3trik Apr 12, 2024
2e0e55b
Remove wasm target
geom3trik Jun 3, 2024
5b548c3
Expose `GetRawWindowHandle` trait
geom3trik Jun 8, 2024
262251e
Start to implement skia renderer
geom3trik Feb 19, 2024
9d41c65
Minor workspace improvements. (#462)
Greatness7 Mar 19, 2024
336f817
Minor clean ups and optimizations to font/paragraph handling.
Greatness7 Mar 22, 2024
7ecef9f
Add `font-variation-settings` CSS support.
Greatness7 Mar 22, 2024
1aa525b
Work on borders
geom3trik Mar 24, 2024
2623a74
Update baseview backend
geom3trik Mar 29, 2024
cda11d6
Incremental rendering
geom3trik Mar 26, 2024
15385b4
Rename border_radius to corner_radius and border_corner_shape to corn…
geom3trik Apr 3, 2024
77c10dc
Redraw when text layout changes
geom3trik Apr 3, 2024
f117457
Deduplicate
geom3trik Apr 3, 2024
584d581
Rename box-shadow to just shadow
geom3trik Apr 4, 2024
aeb27d8
Add blend mode and backdrop filter
geom3trik Apr 6, 2024
9df8ab9
WIP
geom3trik Apr 12, 2024
11e8c70
Update xypad.rs
geom3trik May 28, 2024
d6c5552
Update skia dependency
geom3trik May 28, 2024
e155da3
Fix crash when minimising on Windows
geom3trik May 28, 2024
44531bc
Fix resize behaviour
geom3trik May 29, 2024
1c68724
Update animatable_set.rs
geom3trik Jun 2, 2024
4f233e0
Update animatable_set.rs
geom3trik Jun 2, 2024
66f8749
remove print noise
geom3trik Jun 2, 2024
b2f04d9
Update skia dependency
geom3trik Jun 3, 2024
698a5bd
Clean up use of println
geom3trik Jun 8, 2024
b22a04b
WIP image loading
geom3trik Jun 8, 2024
f507cf9
WIP textbox
geom3trik Jun 9, 2024
33e7ef0
More work on textbox
geom3trik Jun 10, 2024
b2383f2
Change textbox carat width to 1 pixel
geom3trik Jun 21, 2024
26669f3
Make static references a lens
geom3trik Jun 22, 2024
664f07c
Update dropdown, picklist, and menus
geom3trik Jun 24, 2024
a9cb495
Cleanup
geom3trik Jun 24, 2024
2f6bd96
Start to add text decorations
geom3trik Jun 27, 2024
401dceb
WIP Rich Text + Markdown
geom3trik Jun 28, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .DS_Store
Binary file not shown.
2 changes: 0 additions & 2 deletions .cargo/config.toml

This file was deleted.

10 changes: 1 addition & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,9 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
backend: [winit, baseview]
wasm: [""]
include:
- os: ubuntu-latest
backend: winit
wasm: "--target wasm32-unknown-unknown"
env:
RUSTFLAGS: '-D warnings'
steps:
Expand All @@ -37,11 +35,5 @@ jobs:
with:
toolchain: stable
override: true
- name: Install wasm toolchain
if: "matrix.wasm != ''"
uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: wasm32-unknown-unknown
- name: Build
run: cargo check --all-targets ${{ matrix.wasm }} --no-default-features --features x11,wayland,clipboard,${{ matrix.backend }}
run: cargo check --all-targets --no-default-features --features x11,wayland,clipboard,${{ matrix.backend }}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Allow contributors to configure their own vscode tasks.
.vscode/tasks.json

# Generated by Cargo
# will have compiled files and executables
/target/
Expand Down
Loading