mirror of
https://github.com/smallmain/cocos-enhance-kit.git
synced 2025-01-14 23:11:06 +00:00
10 lines
198 B
C++
10 lines
198 B
C++
// 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;
|
|
}
|