mirror of
https://github.com/smallmain/cocos-enhance-kit.git
synced 2025-01-15 07:21:07 +00:00
10 lines
198 B
PHP
10 lines
198 B
PHP
|
// Copyright (c) 2017-2019 Xiamen Yaji Software Co., Ltd.
|
||
|
#include <gamma>
|
||
|
|
||
|
vec4 CCFragOutput (vec4 color) {
|
||
|
#if OUTPUT_TO_GAMMA
|
||
|
color.rgb = LinearToSRGB(color.rgb);
|
||
|
#endif
|
||
|
return color;
|
||
|
}
|