2023-06-12 06:57:38 +10:00
|
|
|
#version 450
|
|
|
|
|
|
|
|
/*
|
2023-06-25 13:40:26 +10:00
|
|
|
Average fill v1.3 by fishku
|
2023-06-12 06:57:38 +10:00
|
|
|
Copyright (C) 2023
|
|
|
|
Public domain license (CC0)
|
|
|
|
|
|
|
|
This shader preset allows cropping the image on any side, and filling the
|
|
|
|
cropped area with the average color of an adjustable area next to it.
|
|
|
|
This is useful for certain games that do not render a full image to maintain
|
|
|
|
the overall aspect ratio and to avoid burn-in.
|
|
|
|
|
2023-06-15 06:30:56 +10:00
|
|
|
The preset also allows you to extend the original content to a larger
|
|
|
|
screen. It's recommended to set the video scaling options as follows:
|
|
|
|
- Turn integer scaling OFF
|
|
|
|
- Set aspect ratio to FULL
|
|
|
|
The shader will then take over and handle the proper scaling and aspect
|
|
|
|
ratio of the input.
|
|
|
|
|
2023-06-12 06:57:38 +10:00
|
|
|
In case the image is cropped on multiple sides, different blend modes for
|
|
|
|
the corner are available. Simply change the parameter for the "corner blend
|
|
|
|
mode".
|
|
|
|
The available corner blend modes are:
|
|
|
|
0 = Draw horizontal bars on top
|
|
|
|
1 = Draw vertical bars on top
|
|
|
|
2 = Blend bars by weighted averaging
|
|
|
|
3 = Smooth angle-based blending
|
|
|
|
|
|
|
|
Changelog:
|
2023-06-25 13:40:26 +10:00
|
|
|
v1.3: Fix scaling bugs.
|
2023-06-22 09:08:10 +10:00
|
|
|
v1.2: Fix scaling bugs.
|
2023-06-15 06:30:56 +10:00
|
|
|
v1.1: Add extension modes from blur fill; Add average gamma adjustment.
|
2023-06-12 06:57:38 +10:00
|
|
|
v1.0: Initial release.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "parameters.slang"
|
|
|
|
|
|
|
|
layout(push_constant) uniform Push {
|
|
|
|
vec4 InputSize;
|
2023-06-15 06:30:56 +10:00
|
|
|
vec4 FinalViewportSize;
|
2023-06-12 06:57:38 +10:00
|
|
|
float OS_CROP_TOP;
|
|
|
|
float OS_CROP_BOTTOM;
|
|
|
|
float OS_CROP_LEFT;
|
|
|
|
float OS_CROP_RIGHT;
|
2023-06-15 06:30:56 +10:00
|
|
|
float CENTER_CROP;
|
2023-06-12 06:57:38 +10:00
|
|
|
float SAMPLE_SIZE;
|
2023-06-15 06:30:56 +10:00
|
|
|
float EXTEND_H;
|
|
|
|
float EXTEND_V;
|
|
|
|
float CORNER_BLEND_MODE;
|
|
|
|
float FORCE_ASPECT_RATIO;
|
|
|
|
float ASPECT_H;
|
|
|
|
float ASPECT_V;
|
|
|
|
float FORCE_INTEGER_SCALING;
|
|
|
|
float FILL_GAMMA;
|
2023-06-12 06:57:38 +10:00
|
|
|
}
|
|
|
|
param;
|
|
|
|
|
2023-06-15 06:30:56 +10:00
|
|
|
#include "../blur_fill/scaling.slang"
|
|
|
|
|
2023-06-12 06:57:38 +10:00
|
|
|
layout(std140, set = 0, binding = 0) uniform UBO { mat4 MVP; }
|
|
|
|
global;
|
|
|
|
|
|
|
|
#pragma stage vertex
|
|
|
|
layout(location = 0) in vec4 Position;
|
|
|
|
layout(location = 1) in vec2 TexCoord;
|
|
|
|
layout(location = 0) out vec2 vTexCoord;
|
|
|
|
|
|
|
|
void main() {
|
|
|
|
gl_Position = global.MVP * Position;
|
|
|
|
vTexCoord = TexCoord;
|
|
|
|
}
|
|
|
|
|
|
|
|
#pragma stage fragment
|
|
|
|
layout(location = 0) in vec2 vTexCoord;
|
|
|
|
layout(location = 0) out vec4 FragColor;
|
|
|
|
layout(set = 0, binding = 2) uniform sampler2D Input;
|
|
|
|
layout(set = 0, binding = 3) uniform sampler2D Top;
|
|
|
|
layout(set = 0, binding = 4) uniform sampler2D Bottom;
|
|
|
|
layout(set = 0, binding = 5) uniform sampler2D Left;
|
|
|
|
layout(set = 0, binding = 6) uniform sampler2D Right;
|
|
|
|
|
|
|
|
#define PI 3.1415926538
|
|
|
|
|
|
|
|
// For mipmap sampling, use a big offset to get the average of a PoT input.
|
|
|
|
#define BIG_NUMBER 9000.1
|
|
|
|
|
2023-06-15 06:30:56 +10:00
|
|
|
vec3 blend_corner(vec3 a, // The first color to blend
|
|
|
|
vec3 b, // The second color to blend
|
|
|
|
float wa, // The weight of the first color
|
|
|
|
float wb, // The weight of the second color
|
|
|
|
vec2 coord, // The coordinate to evaluate the blend for
|
2023-06-12 06:57:38 +10:00
|
|
|
vec2 corner_coord, // The coordinate of the corner of the
|
|
|
|
// content after cropping
|
|
|
|
vec2 gap_size // The component-wise distance from the corner
|
|
|
|
// of the content to the corner of the viewport
|
|
|
|
) {
|
|
|
|
switch (int(param.CORNER_BLEND_MODE)) {
|
|
|
|
case 0:
|
|
|
|
// Horizontal bars on top
|
|
|
|
return b;
|
|
|
|
case 1:
|
|
|
|
// Vertical bars on top
|
|
|
|
return a;
|
|
|
|
case 2:
|
|
|
|
// Weighted average of averages
|
|
|
|
return mix(a, b, wa / (wa + wb));
|
|
|
|
case 3:
|
|
|
|
default:
|
|
|
|
// Angle blend
|
2023-06-15 06:30:56 +10:00
|
|
|
const vec2 delta = (coord - corner_coord) / gap_size;
|
2023-06-12 06:57:38 +10:00
|
|
|
// Use absolutes to always operate in 1st quadrant.
|
|
|
|
// This makes the angle work out to be correct in all cases when
|
|
|
|
// carefully choosing argument ordering.
|
|
|
|
const float angle = atan(abs(delta.y), abs(delta.x)) / (PI * 0.5);
|
|
|
|
// Smoothstep makes the transition perceptually smoother.
|
|
|
|
return mix(a, b, smoothstep(0.0, 1.0, angle));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void main() {
|
2023-06-22 09:08:10 +10:00
|
|
|
const vec2 pixel_coord = o2i(vTexCoord);
|
2023-06-12 06:57:38 +10:00
|
|
|
if (pixel_coord.x < param.OS_CROP_LEFT) {
|
2023-06-15 06:30:56 +10:00
|
|
|
if (param.EXTEND_H < 0.5) {
|
|
|
|
FragColor = vec4(0.0, 0.0, 0.0, 1.0);
|
|
|
|
return;
|
|
|
|
}
|
2023-06-12 06:57:38 +10:00
|
|
|
const vec3 left = textureLod(Left, vec2(0.5), BIG_NUMBER).rgb;
|
|
|
|
if (pixel_coord.y < param.OS_CROP_TOP) {
|
2023-06-15 06:30:56 +10:00
|
|
|
if (param.EXTEND_V < 0.5) {
|
|
|
|
FragColor = vec4(0.0, 0.0, 0.0, 1.0);
|
|
|
|
return;
|
|
|
|
}
|
2023-06-12 06:57:38 +10:00
|
|
|
// Top left corner
|
|
|
|
const vec3 top = textureLod(Top, vec2(0.5), BIG_NUMBER).rgb;
|
2023-06-15 06:30:56 +10:00
|
|
|
const vec2 content_corner =
|
2023-06-22 09:08:10 +10:00
|
|
|
i2o(vec2(param.OS_CROP_LEFT, param.OS_CROP_TOP));
|
2023-06-15 06:30:56 +10:00
|
|
|
const vec2 viewport_corner = vec2(0.0, 0.0);
|
2023-06-12 06:57:38 +10:00
|
|
|
FragColor =
|
|
|
|
vec4(blend_corner(left, top,
|
|
|
|
param.InputSize.y - param.OS_CROP_TOP -
|
|
|
|
param.OS_CROP_BOTTOM,
|
|
|
|
param.InputSize.x - param.OS_CROP_LEFT -
|
|
|
|
param.OS_CROP_RIGHT,
|
2023-06-15 06:30:56 +10:00
|
|
|
vTexCoord, content_corner,
|
|
|
|
viewport_corner - content_corner),
|
2023-06-12 06:57:38 +10:00
|
|
|
1.0);
|
2023-06-15 06:30:56 +10:00
|
|
|
FragColor.rgb = pow(FragColor.rgb, vec3(param.FILL_GAMMA));
|
2023-06-12 06:57:38 +10:00
|
|
|
} else if (pixel_coord.y < param.InputSize.y - param.OS_CROP_BOTTOM) {
|
|
|
|
// Left bar
|
2023-06-15 06:30:56 +10:00
|
|
|
FragColor = vec4(pow(left, vec3(param.FILL_GAMMA)), 1.0);
|
2023-06-12 06:57:38 +10:00
|
|
|
} else {
|
2023-06-15 06:30:56 +10:00
|
|
|
if (param.EXTEND_V < 0.5) {
|
|
|
|
FragColor = vec4(0.0, 0.0, 0.0, 1.0);
|
|
|
|
return;
|
|
|
|
}
|
2023-06-12 06:57:38 +10:00
|
|
|
// Bottom left corner
|
|
|
|
const vec3 bottom = textureLod(Bottom, vec2(0.5), BIG_NUMBER).rgb;
|
2023-06-22 09:08:10 +10:00
|
|
|
const vec2 content_corner = i2o(vec2(
|
|
|
|
param.OS_CROP_LEFT, param.InputSize.y - param.OS_CROP_BOTTOM));
|
2023-06-15 06:30:56 +10:00
|
|
|
const vec2 viewport_corner = vec2(0.0, 1.0);
|
|
|
|
FragColor =
|
|
|
|
vec4(blend_corner(left, bottom,
|
|
|
|
param.InputSize.y - param.OS_CROP_TOP -
|
|
|
|
param.OS_CROP_BOTTOM,
|
|
|
|
param.InputSize.x - param.OS_CROP_LEFT -
|
|
|
|
param.OS_CROP_RIGHT,
|
|
|
|
vTexCoord, content_corner,
|
|
|
|
viewport_corner - content_corner),
|
|
|
|
1.0);
|
|
|
|
FragColor.rgb = pow(FragColor.rgb, vec3(param.FILL_GAMMA));
|
2023-06-12 06:57:38 +10:00
|
|
|
}
|
|
|
|
} else if (pixel_coord.x < param.InputSize.x - param.OS_CROP_RIGHT) {
|
|
|
|
if (pixel_coord.y < param.OS_CROP_TOP) {
|
2023-06-15 06:30:56 +10:00
|
|
|
if (param.EXTEND_V < 0.5) {
|
|
|
|
FragColor = vec4(0.0, 0.0, 0.0, 1.0);
|
|
|
|
return;
|
|
|
|
}
|
2023-06-12 06:57:38 +10:00
|
|
|
// Top bar
|
|
|
|
FragColor = vec4(textureLod(Top, vec2(0.5), BIG_NUMBER).rgb, 1.0);
|
2023-06-15 06:30:56 +10:00
|
|
|
FragColor.rgb = pow(FragColor.rgb, vec3(param.FILL_GAMMA));
|
2023-06-12 06:57:38 +10:00
|
|
|
} else if (pixel_coord.y < param.InputSize.y - param.OS_CROP_BOTTOM) {
|
|
|
|
// Uncropped
|
|
|
|
// Do a sharp (nearest neighbor) resampling.
|
|
|
|
FragColor = vec4(
|
2023-06-15 06:30:56 +10:00
|
|
|
texture(Input, (floor(pixel_coord) + 0.5) * param.InputSize.zw)
|
2023-06-12 06:57:38 +10:00
|
|
|
.rgb,
|
|
|
|
1.0);
|
|
|
|
} else {
|
2023-06-15 06:30:56 +10:00
|
|
|
if (param.EXTEND_V < 0.5) {
|
|
|
|
FragColor = vec4(0.0, 0.0, 0.0, 1.0);
|
|
|
|
return;
|
|
|
|
}
|
2023-06-12 06:57:38 +10:00
|
|
|
// Bottom bar
|
|
|
|
FragColor =
|
|
|
|
vec4(textureLod(Bottom, vec2(0.5), BIG_NUMBER).rgb, 1.0);
|
2023-06-15 06:30:56 +10:00
|
|
|
FragColor.rgb = pow(FragColor.rgb, vec3(param.FILL_GAMMA));
|
2023-06-12 06:57:38 +10:00
|
|
|
}
|
|
|
|
} else {
|
2023-06-15 06:30:56 +10:00
|
|
|
if (param.EXTEND_H < 0.5) {
|
|
|
|
FragColor = vec4(0.0, 0.0, 0.0, 1.0);
|
|
|
|
return;
|
|
|
|
}
|
2023-06-12 06:57:38 +10:00
|
|
|
const vec3 right = textureLod(Right, vec2(0.5), BIG_NUMBER).rgb;
|
|
|
|
if (pixel_coord.y < param.OS_CROP_TOP) {
|
2023-06-15 06:30:56 +10:00
|
|
|
if (param.EXTEND_V < 0.5) {
|
|
|
|
FragColor = vec4(0.0, 0.0, 0.0, 1.0);
|
|
|
|
return;
|
|
|
|
}
|
2023-06-12 06:57:38 +10:00
|
|
|
// Top right corner
|
|
|
|
const vec3 top = textureLod(Top, vec2(0.5), BIG_NUMBER).rgb;
|
2023-06-22 09:08:10 +10:00
|
|
|
const vec2 content_corner = i2o(vec2(
|
|
|
|
param.InputSize.x - param.OS_CROP_RIGHT, param.OS_CROP_TOP));
|
2023-06-15 06:30:56 +10:00
|
|
|
const vec2 viewport_corner = vec2(1.0, 0.0);
|
2023-06-12 06:57:38 +10:00
|
|
|
FragColor =
|
|
|
|
vec4(blend_corner(right, top,
|
|
|
|
param.InputSize.y - param.OS_CROP_TOP -
|
|
|
|
param.OS_CROP_BOTTOM,
|
|
|
|
param.InputSize.x - param.OS_CROP_LEFT -
|
|
|
|
param.OS_CROP_RIGHT,
|
2023-06-15 06:30:56 +10:00
|
|
|
vTexCoord, content_corner,
|
|
|
|
viewport_corner - content_corner),
|
2023-06-12 06:57:38 +10:00
|
|
|
1.0);
|
2023-06-15 06:30:56 +10:00
|
|
|
FragColor.rgb = pow(FragColor.rgb, vec3(param.FILL_GAMMA));
|
2023-06-12 06:57:38 +10:00
|
|
|
} else if (pixel_coord.y < param.InputSize.y - param.OS_CROP_BOTTOM) {
|
|
|
|
// Right bar
|
2023-06-15 06:30:56 +10:00
|
|
|
FragColor = vec4(pow(right, vec3(param.FILL_GAMMA)), 1.0);
|
2023-06-12 06:57:38 +10:00
|
|
|
} else {
|
2023-06-15 06:30:56 +10:00
|
|
|
if (param.EXTEND_V < 0.5) {
|
|
|
|
FragColor = vec4(0.0, 0.0, 0.0, 1.0);
|
|
|
|
return;
|
|
|
|
}
|
2023-06-12 06:57:38 +10:00
|
|
|
// Bottom right corner
|
|
|
|
const vec3 bottom = textureLod(Bottom, vec2(0.5), BIG_NUMBER).rgb;
|
2023-06-15 06:30:56 +10:00
|
|
|
const vec2 content_corner =
|
|
|
|
i2o(vec2(param.InputSize.x - param.OS_CROP_RIGHT,
|
2023-06-22 09:08:10 +10:00
|
|
|
param.InputSize.y - param.OS_CROP_BOTTOM));
|
2023-06-15 06:30:56 +10:00
|
|
|
const vec2 viewport_corner = vec2(1.0, 1.0);
|
|
|
|
FragColor =
|
|
|
|
vec4(blend_corner(right, bottom,
|
|
|
|
param.InputSize.y - param.OS_CROP_TOP -
|
|
|
|
param.OS_CROP_BOTTOM,
|
|
|
|
param.InputSize.x - param.OS_CROP_LEFT -
|
|
|
|
param.OS_CROP_RIGHT,
|
|
|
|
vTexCoord, content_corner,
|
|
|
|
viewport_corner - content_corner),
|
|
|
|
1.0);
|
|
|
|
FragColor.rgb = pow(FragColor.rgb, vec3(param.FILL_GAMMA));
|
2023-06-12 06:57:38 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|