Sign in
skia
/
external
/
github.com
/
libsdl-org
/
SDL
/
543072cd5081b973b8d18005c196c82ea68efb92
/
.
/
src
/
render
/
gpu
/
shaders
/
common.frag.hlsli
blob: 761fc535c475cbb76f1f9f7e5481b29b8823fbd7 [
file
]
float4
GetOutputColor
(
float4 rgba
)
{
float4 output
;
output
.
rgb
=
rgba
.
rgb
*
color_scale
;
output
.
a
=
rgba
.
a
;
return
output
;
}