mirror of
https://github.com/italicsjenga/slang-shaders.git
synced 2024-11-23 00:01:31 +11:00
e366c7524c
* Refactor scaling into include library Add separate H and V integer scale forcing Fix blur_fill; average fill still TODO Clean up and fix blur_fill; Initial docs; Avg fill TODO Mostly fix avg. fill; sampling TODO; Bump versions, add docs Fix H/V extension; Tweak default params Fix avg. fill Remove defines, create functions Reorder params Clean up Fix pixel_aa subpx sampling with rotation * Minor docs fix
155 lines
5.6 KiB
Plaintext
155 lines
5.6 KiB
Plaintext
#version 450
|
|
|
|
/*
|
|
Blur fill v1.7 by fishku
|
|
Copyright (C) 2023
|
|
Public domain license (CC0)
|
|
|
|
This shader preset allows cropping the image on any side, and filling the
|
|
cropped area with a blurred version of the input image borders.
|
|
This is useful for certain games that do not render a full image to maintain
|
|
the overall aspect ratio and to avoid burn-in.
|
|
|
|
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.
|
|
|
|
The preset comes in three variants which differ only in the strength of the
|
|
blur.
|
|
Since the blur strength in the dual filter blur depends on the input
|
|
resolution, and because there is currently no mechanism to set resolution
|
|
based on user parameters, the three variants provide different sampling
|
|
resolutions which affect the strength of the blur.
|
|
Additionally to the resolution, a blur radius parameter controls the
|
|
strength of the blur.
|
|
|
|
Changelog:
|
|
v1.7: Refactor for new scaling library. Add rotation support.
|
|
v1.6: Optimize. Update to new Pixel AA version. Tune default blur strength.
|
|
v1.5: Add anti-aliased interpolation for non-integer scaling.
|
|
v1.4: Fix scaling bugs.
|
|
v1.3: Reduce shimmering artifacts.
|
|
v1.2: Fix scaling bugs.
|
|
v1.1: Fix bug with glcore driver.
|
|
v1.0: Initial release.
|
|
*/
|
|
|
|
// clang-format off
|
|
#include "parameters.slang"
|
|
#include "../../../blurs/shaders/dual_filter/parameters.slang"
|
|
#include "../../../pixel-art-scaling/shaders/pixel_aa/parameters.slang"
|
|
// clang-format on
|
|
|
|
#include "../../../misc/shaders/scaling.slang"
|
|
#include "../../../pixel-art-scaling/shaders/pixel_aa/shared.slang"
|
|
|
|
layout(push_constant) uniform Push {
|
|
vec4 InputSize;
|
|
vec4 TiledSize;
|
|
vec4 OutputSize;
|
|
uint Rotation;
|
|
float OS_CROP_TOP;
|
|
float OS_CROP_BOTTOM;
|
|
float OS_CROP_LEFT;
|
|
float OS_CROP_RIGHT;
|
|
float CENTER_AFTER_CROPPING;
|
|
float SAMPLE_SIZE;
|
|
float FORCE_ASPECT_RATIO;
|
|
float ASPECT_H;
|
|
float ASPECT_V;
|
|
float FORCE_INTEGER_SCALING_H;
|
|
float FORCE_INTEGER_SCALING_V;
|
|
float FILL_GAMMA;
|
|
// From dual filter blur
|
|
float BLUR_RADIUS;
|
|
// From pixel AA
|
|
float PIX_AA_SHARP;
|
|
float PIX_AA_SUBPX;
|
|
float PIX_AA_SUBPX_BGR;
|
|
}
|
|
param;
|
|
|
|
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;
|
|
layout(location = 1) out vec2 tx_coord;
|
|
layout(location = 2) out vec2 tx_per_px;
|
|
layout(location = 3) out vec2 tx_to_uv;
|
|
layout(location = 4) out vec4 input_corners;
|
|
|
|
void main() {
|
|
gl_Position = global.MVP * Position;
|
|
vTexCoord = TexCoord;
|
|
const vec4 crop = vec4(param.OS_CROP_TOP, param.OS_CROP_LEFT,
|
|
param.OS_CROP_BOTTOM, param.OS_CROP_RIGHT);
|
|
const vec2 scale_o2i = get_scale_o2i(
|
|
param.InputSize.xy, param.OutputSize.xy, crop, param.Rotation,
|
|
param.CENTER_AFTER_CROPPING, param.FORCE_ASPECT_RATIO,
|
|
vec2(param.ASPECT_H, param.ASPECT_V),
|
|
vec2(param.FORCE_INTEGER_SCALING_H, param.FORCE_INTEGER_SCALING_V),
|
|
/* output_size_is_final_viewport_size = */ false);
|
|
tx_coord = o2i(vTexCoord, param.InputSize.xy, crop, param.Rotation,
|
|
param.CENTER_AFTER_CROPPING, scale_o2i);
|
|
tx_per_px = scale_o2i * param.OutputSize.zw;
|
|
tx_to_uv = param.InputSize.zw;
|
|
input_corners = get_input_corners(param.InputSize.xy, crop, param.Rotation);
|
|
}
|
|
|
|
#pragma stage fragment
|
|
layout(location = 0) in vec2 vTexCoord;
|
|
layout(location = 1) in vec2 tx_coord;
|
|
layout(location = 2) in vec2 tx_per_px;
|
|
layout(location = 3) in vec2 tx_to_uv;
|
|
layout(location = 4) in vec4 input_corners;
|
|
layout(location = 0) out vec4 FragColor;
|
|
layout(set = 0, binding = 2) uniform sampler2D Input;
|
|
layout(set = 0, binding = 3) uniform sampler2D Tiled;
|
|
layout(set = 0, binding = 4) uniform sampler2D Blurred;
|
|
|
|
void main() {
|
|
if (any(lessThan(tx_coord, input_corners.xy)) ||
|
|
any(greaterThanEqual(tx_coord, input_corners.zw))) {
|
|
if (param.BLUR_RADIUS > 0.0) {
|
|
// Sample blur.
|
|
FragColor = vec4(
|
|
pow(texture(Blurred, vTexCoord).rgb, vec3(param.FILL_GAMMA)),
|
|
1.0);
|
|
} else {
|
|
// Sample tiled pattern.
|
|
// Do a perfectly sharp (nearest neighbor) resampling.
|
|
FragColor =
|
|
vec4(pow(texture(Tiled,
|
|
(floor(vTexCoord * param.TiledSize.xy) + 0.5) *
|
|
param.TiledSize.zw)
|
|
.rgb,
|
|
vec3(param.FILL_GAMMA)),
|
|
1.0);
|
|
}
|
|
} else {
|
|
// Sample original.
|
|
if (param.FORCE_INTEGER_SCALING_H > 0.5 &&
|
|
param.FORCE_INTEGER_SCALING_V > 0.5) {
|
|
// Do a perfectly sharp (nearest neighbor) sampling.
|
|
FragColor = vec4(
|
|
texture(Input, (floor(tx_coord) + 0.5) * param.InputSize.zw)
|
|
.rgb,
|
|
1.0);
|
|
} else {
|
|
// Do a sharp anti-aliased interpolation.
|
|
// Do not correct for gamma additionally because the input is
|
|
// already in linear color space.
|
|
FragColor = pixel_aa(
|
|
Input, tx_per_px, tx_to_uv, tx_coord, param.PIX_AA_SHARP,
|
|
/* gamma_correct = */ false, param.PIX_AA_SUBPX > 0.5,
|
|
param.PIX_AA_SUBPX_BGR > 0.5, param.Rotation);
|
|
}
|
|
}
|
|
}
|