repurposed a 'minimal res' indicator to represent 'ui area' as it's no longer necessary to care about the minimal window size allowed

This commit is contained in:
minjaesong
2022-04-14 16:06:07 +09:00
parent b92b53352b
commit 50012444b5
3 changed files with 18 additions and 14 deletions

View File

@@ -32,9 +32,9 @@ vec2 patternsize = vec2(1.0/512.0, 1.0/512.0);
mat4 rgb_to_ycocg = mat4(
0.25, 1.0, -0.5, 0.0,
0.5, 0.0, 1.0, 0.0,
0.5, 0.0, 1.0, 0.0,
0.25, -1.0, -0.5, 0.0,
0.0, 0.0, 0.0, 1.0
0.0, 0.0, 0.0, 1.0
);
mat4 ycocg_to_rgb = mat4(

View File

@@ -29,9 +29,9 @@ vec2 boolean = vec2(0.0, 1.0);
mat4 rgb_to_ycocg = mat4(
0.25, 1.0, -0.5, 0.0,
0.5, 0.0, 1.0, 0.0,
0.5, 0.0, 1.0, 0.0,
0.25, -1.0, -0.5, 0.0,
0.0, 0.0, 0.0, 1.0
0.0, 0.0, 0.0, 1.0
);
mat4 ycocg_to_rgb = mat4(