Sign in
cobalt
/
cobalt
/
c53efd6b6f8ddbcad01c167340ec04b3fd9d0604
/
.
/
src
/
third_party
/
glm
/
test
/
gtx
/
gtx_color_space.cpp
blob: 19ac276b6317a10d2f62edf06a36e17beac779af [
file
] [
log
] [
blame
]
#include
<glm/gtx/color_space.hpp>
int
test_saturation
()
{
int
Error
(
0
);
glm
::
vec4
Color
=
glm
::
saturation
(
1.0f
,
glm
::
vec4
(
1.0
,
0.5
,
0.0
,
1.0
));
return
Error
;
}
int
main
()
{
int
Error
(
0
);
Error
+=
test_saturation
();
return
Error
;
}