1
0
Fork 0
forked from wry/wry

Merge pull request #158 from mahkoh/jorth/llvmpipe-debugging

test llvmpipe
This commit is contained in:
mahkoh 2024-04-10 10:03:16 +02:00 committed by GitHub
commit e9ba7782a0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 6 additions and 4 deletions

View file

@ -16,5 +16,4 @@ tasks:
- test: |
cd jay
export RUST_BACKTRACE=1
export GALLIUM_DRIVER=softpipe
./target/debug/jay run-tests

View file

@ -125,6 +125,7 @@ Jay supports the following wayland protocols:
| wl_seat | 9 | |
| wl_shm | 2 | |
| wl_subcompositor | 1 | |
| wp_alpha_modifier_v1 | 1 | |
| wp_content_type_manager_v1 | 1 | |
| wp_cursor_shape_manager_v1 | 1 | |
| wp_fractional_scale_manager_v1 | 1 | |

View file

@ -1,5 +1,7 @@
# Unreleased
# 1.0
- Add support for wp-alpha-modifier.
# 1.0 (2024-04-07)
This is the first stable release of Jay.

View file

@ -45,9 +45,9 @@ async fn test(run: Rc<TestRun>) -> TestResult {
client.compare_screenshot("1", false).await?;
alpha1.set_multiplier(0.5)?;
alpha1.set_multiplier(0.51)?;
ss1.commit()?;
alpha2.set_multiplier(0.5)?;
alpha2.set_multiplier(0.51)?;
ss2.commit()?;
client.compare_screenshot("2", false).await?;