Remove non-compliant float suffix in NV12 fragment shader
The 'f' suffix isn't supported until ESSL 3.0.
This commit is contained in:
parent
31c65e0863
commit
8ee82421b3
1 changed files with 1 additions and 1 deletions
|
|
@ -16,5 +16,5 @@ void main() {
|
|||
);
|
||||
|
||||
YCbCr -= offset;
|
||||
gl_FragColor = vec4(clamp(yuvmat * YCbCr, 0.0, 1.0), 1.0f);
|
||||
gl_FragColor = vec4(clamp(yuvmat * YCbCr, 0.0, 1.0), 1.0);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue