Sign in
skia
/
external
/
github.com
/
linebender
/
vello
/
52d361155a993f224d7d01a266c97e7b41437679
/
.
/
sparse_strips
/
vello_cpu
/
src
/
util.rs
blob: 2b7b933b6e2b6549f12c4f3687ce2a48984d4e74 [
file
]
// Copyright 2025 the Vello Authors
// SPDX-License-Identifier: Apache-2.0 OR MIT
pub
(
crate
)
mod
scalar
{
#[
inline
(
always
)]
pub
(
crate
)
const
fn
div_255
(
val
:
u16
)
->
u16
{
(
val
+
1
+
(
val
>>
8
))
>>
8
}
}