New antialiasing made
This commit is contained in:
parent
bf04c70f50
commit
75b76fc236
16
assets/ms_fragment.txt
Executable file
16
assets/ms_fragment.txt
Executable file
@ -0,0 +1,16 @@
|
|||||||
|
precision mediump float;
|
||||||
|
varying vec4 color;
|
||||||
|
varying vec3 position;
|
||||||
|
|
||||||
|
uniform vec4 lineParams;
|
||||||
|
|
||||||
|
void main()
|
||||||
|
{
|
||||||
|
float a = lineParams.x;
|
||||||
|
float b = lineParams.y;
|
||||||
|
float c = lineParams.z;
|
||||||
|
|
||||||
|
float distance = abs(a*position.x + b*position.y + c);
|
||||||
|
|
||||||
|
gl_FragColor = vec4(color.rgb, color.a*clamp(1.2 / (distance + 1.0) - 0.5, 0.0, 1.0));
|
||||||
|
}
|
46
assets/ms_fragment_x16.txt
Executable file
46
assets/ms_fragment_x16.txt
Executable file
@ -0,0 +1,46 @@
|
|||||||
|
precision mediump float;
|
||||||
|
varying vec4 color;
|
||||||
|
varying vec3 position;
|
||||||
|
|
||||||
|
uniform vec4 lineParams0;
|
||||||
|
uniform vec4 lineParams1;
|
||||||
|
uniform vec4 lineParams2;
|
||||||
|
uniform vec4 lineParams3;
|
||||||
|
uniform vec4 lineParams4;
|
||||||
|
uniform vec4 lineParams5;
|
||||||
|
uniform vec4 lineParams6;
|
||||||
|
uniform vec4 lineParams7;
|
||||||
|
uniform vec4 lineParams8;
|
||||||
|
uniform vec4 lineParams9;
|
||||||
|
uniform vec4 lineParams10;
|
||||||
|
uniform vec4 lineParams11;
|
||||||
|
uniform vec4 lineParams12;
|
||||||
|
uniform vec4 lineParams13;
|
||||||
|
uniform vec4 lineParams14;
|
||||||
|
uniform vec4 lineParams15;
|
||||||
|
|
||||||
|
void main()
|
||||||
|
{
|
||||||
|
float distance = abs(lineParams0.x*position.x + lineParams0.y*position.y + lineParams0.z);
|
||||||
|
|
||||||
|
|
||||||
|
distance = min(distance, abs(lineParams1.x*position.x + lineParams1.y*position.y + lineParams1.z));
|
||||||
|
|
||||||
|
distance = min(distance, abs(lineParams2.x*position.x + lineParams2.y*position.y + lineParams2.z));
|
||||||
|
distance = min(distance, abs(lineParams3.x*position.x + lineParams3.y*position.y + lineParams3.z));
|
||||||
|
distance = min(distance, abs(lineParams4.x*position.x + lineParams4.y*position.y + lineParams4.z));
|
||||||
|
distance = min(distance, abs(lineParams5.x*position.x + lineParams5.y*position.y + lineParams5.z));
|
||||||
|
distance = min(distance, abs(lineParams6.x*position.x + lineParams6.y*position.y + lineParams6.z));
|
||||||
|
distance = min(distance, abs(lineParams7.x*position.x + lineParams7.y*position.y + lineParams7.z));
|
||||||
|
distance = min(distance, abs(lineParams8.x*position.x + lineParams8.y*position.y + lineParams8.z));
|
||||||
|
distance = min(distance, abs(lineParams9.x*position.x + lineParams9.y*position.y + lineParams9.z));
|
||||||
|
distance = min(distance, abs(lineParams10.x*position.x + lineParams10.y*position.y + lineParams10.z));
|
||||||
|
distance = min(distance, abs(lineParams11.x*position.x + lineParams11.y*position.y + lineParams11.z));
|
||||||
|
distance = min(distance, abs(lineParams12.x*position.x + lineParams12.y*position.y + lineParams12.z));
|
||||||
|
distance = min(distance, abs(lineParams13.x*position.x + lineParams13.y*position.y + lineParams13.z));
|
||||||
|
distance = min(distance, abs(lineParams14.x*position.x + lineParams14.y*position.y + lineParams14.z));
|
||||||
|
distance = min(distance, abs(lineParams15.x*position.x + lineParams15.y*position.y + lineParams15.z));
|
||||||
|
|
||||||
|
|
||||||
|
gl_FragColor = vec4(color.rgb, color.a*clamp(1.2 / (distance + 1.0) - 0.5, 0.0, 1.0));
|
||||||
|
}
|
13
assets/ms_vertex.txt
Executable file
13
assets/ms_vertex.txt
Executable file
@ -0,0 +1,13 @@
|
|||||||
|
attribute vec3 vPosition;
|
||||||
|
attribute vec4 vColor;
|
||||||
|
varying vec4 color;
|
||||||
|
varying vec3 position;
|
||||||
|
|
||||||
|
uniform mat4 ProjectionMatrix;
|
||||||
|
|
||||||
|
void main()
|
||||||
|
{
|
||||||
|
gl_Position = ProjectionMatrix * vec4(vPosition.xyz, 1.0);
|
||||||
|
color = vColor;
|
||||||
|
position = vPosition;
|
||||||
|
}
|
@ -1,422 +0,0 @@
|
|||||||
#version 410 compatibility
|
|
||||||
#define SMAA_PIXEL_SIZE vec2(1.0 / 512.0, 1.0 / 512.0)
|
|
||||||
|
|
||||||
|
|
||||||
#define SMAA_THRESHOLD 0.05
|
|
||||||
#define SMAA_MAX_SEARCH_STEPS 32
|
|
||||||
#define SMAA_MAX_SEARCH_STEPS_DIAG 16
|
|
||||||
#define SMAA_CORNER_ROUNDING 25
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef SMAA_DEPTH_THRESHOLD
|
|
||||||
#define SMAA_DEPTH_THRESHOLD (0.1 * SMAA_THRESHOLD)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef SMAA_REPROJECTION
|
|
||||||
#define SMAA_REPROJECTION 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define SMAA_REPROJECTION_WEIGHT_SCALE 30.0
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef SMAA_AREATEX_MAX_DISTANCE
|
|
||||||
#define SMAA_AREATEX_MAX_DISTANCE 16
|
|
||||||
#endif
|
|
||||||
#ifndef SMAA_AREATEX_MAX_DISTANCE_DIAG
|
|
||||||
#define SMAA_AREATEX_MAX_DISTANCE_DIAG 20
|
|
||||||
#endif
|
|
||||||
#define SMAA_AREATEX_PIXEL_SIZE (1.0 / vec2(160.0, 560.0))
|
|
||||||
#define SMAA_AREATEX_SUBTEX_SIZE (1.0 / 7.0)
|
|
||||||
|
|
||||||
|
|
||||||
/* --- Define section is over ---- */
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
|
||||||
// Diagonal Search Functions
|
|
||||||
|
|
||||||
/**
|
|
||||||
* These functions allows to perform diagonal pattern searches.
|
|
||||||
*/
|
|
||||||
float SMAASearchDiag1(sampler2D edgesTex, vec2 texcoord, vec2 dir, float c) {
|
|
||||||
texcoord += dir * SMAA_PIXEL_SIZE;
|
|
||||||
vec2 e = vec2(0.0, 0.0);
|
|
||||||
float i;
|
|
||||||
for (i = 0.0; i < float(SMAA_MAX_SEARCH_STEPS_DIAG); i++) {
|
|
||||||
e.rg = textureLod(edgesTex, texcoord, 0.0).rg;
|
|
||||||
|
|
||||||
//SMAA_FLATTEN
|
|
||||||
if (dot(e, vec2(1.0, 1.0)) < 1.9) break;
|
|
||||||
|
|
||||||
texcoord += dir * SMAA_PIXEL_SIZE;
|
|
||||||
}
|
|
||||||
return i + float(e.g > 0.9) * c;
|
|
||||||
}
|
|
||||||
|
|
||||||
float SMAASearchDiag2(sampler2D edgesTex, vec2 texcoord, vec2 dir, float c) {
|
|
||||||
texcoord += dir * SMAA_PIXEL_SIZE;
|
|
||||||
vec2 e = vec2(0.0, 0.0);
|
|
||||||
float i;
|
|
||||||
for (i = 0.0; i < float(SMAA_MAX_SEARCH_STEPS_DIAG); i++) {
|
|
||||||
e.g = textureLod(edgesTex, texcoord, 0.0).g;
|
|
||||||
e.r = textureLodOffset(edgesTex, texcoord, 0.0, ivec2(1, 0)).r;
|
|
||||||
|
|
||||||
//SMAA_FLATTEN
|
|
||||||
if (dot(e, vec2(1.0, 1.0)) < 1.9) break;
|
|
||||||
|
|
||||||
texcoord += dir * SMAA_PIXEL_SIZE;
|
|
||||||
}
|
|
||||||
return i + float(e.g > 0.9) * c;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Similar to SMAAArea, this calculates the area corresponding to a certain
|
|
||||||
* diagonal distance and crossing edges 'e'.
|
|
||||||
*/
|
|
||||||
vec2 SMAAAreaDiag(sampler2D areaTex, vec2 dist, vec2 e, float offset) {
|
|
||||||
vec2 texcoord = float(SMAA_AREATEX_MAX_DISTANCE_DIAG) * e + dist;
|
|
||||||
|
|
||||||
// We do a scale and bias for mapping to texel space:
|
|
||||||
texcoord = SMAA_AREATEX_PIXEL_SIZE * texcoord + (0.5 * SMAA_AREATEX_PIXEL_SIZE);
|
|
||||||
|
|
||||||
// Diagonal areas are on the second half of the texture:
|
|
||||||
texcoord.x += 0.5;
|
|
||||||
|
|
||||||
// Move to proper place, according to the subpixel offset:
|
|
||||||
texcoord.y += SMAA_AREATEX_SUBTEX_SIZE * offset;
|
|
||||||
|
|
||||||
|
|
||||||
return textureLod(areaTex, texcoord, 0.0).rg;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This searches for diagonal patterns and returns the corresponding weights.
|
|
||||||
*/
|
|
||||||
vec2 SMAACalculateDiagWeights(sampler2D edgesTex, sampler2D areaTex, vec2 texcoord, vec2 e, ivec4 subsampleIndices) {
|
|
||||||
vec2 weights = vec2(0.0, 0.0);
|
|
||||||
|
|
||||||
vec2 d;
|
|
||||||
d.x = e.r > 0.0? SMAASearchDiag1(edgesTex, texcoord, vec2(-1.0, 1.0), 1.0) : 0.0;
|
|
||||||
d.y = SMAASearchDiag1(edgesTex, texcoord, vec2(1.0, -1.0), 0.0);
|
|
||||||
|
|
||||||
//SMAA_BRANCH
|
|
||||||
if (d.r + d.g > 2.0) { // d.r + d.g + 1 > 3
|
|
||||||
vec4 coords = fma(vec4(-d.r, d.r, d.g, -d.g), SMAA_PIXEL_SIZE.xyxy, texcoord.xyxy);
|
|
||||||
|
|
||||||
vec4 c;
|
|
||||||
c.x = textureLodOffset(edgesTex, coords.xy, 0.0, ivec2(-1, 0)).g;
|
|
||||||
c.y = textureLodOffset(edgesTex, coords.xy, 0.0, ivec2( 0, 0)).r;
|
|
||||||
c.z = textureLodOffset(edgesTex, coords.zw, 0.0, ivec2( 1, 0)).g;
|
|
||||||
c.w = textureLodOffset(edgesTex, coords.zw, 0.0, ivec2( 1, -1)).r;
|
|
||||||
vec2 e = 2.0 * c.xz + c.yw;
|
|
||||||
float t = float(SMAA_MAX_SEARCH_STEPS_DIAG) - 1.0;
|
|
||||||
e *= step(d.rg, vec2(t, t));
|
|
||||||
|
|
||||||
weights += SMAAAreaDiag(areaTex, d, e, float(subsampleIndices.z));
|
|
||||||
}
|
|
||||||
|
|
||||||
d.x = SMAASearchDiag2(edgesTex, texcoord, vec2(-1.0, -1.0), 0.0);
|
|
||||||
float right = textureLodOffset(edgesTex, texcoord, 0.0, ivec2(1, 0)).r;
|
|
||||||
d.y = right > 0.0? SMAASearchDiag2(edgesTex, texcoord, vec2(1.0, 1.0), 1.0) : 0.0;
|
|
||||||
|
|
||||||
//SMAA_BRANCH
|
|
||||||
if (d.r + d.g > 2.0) { // d.r + d.g + 1 > 3
|
|
||||||
vec4 coords = fma(vec4(-d.r, -d.r, d.g, d.g), SMAA_PIXEL_SIZE.xyxy, texcoord.xyxy);
|
|
||||||
|
|
||||||
vec4 c;
|
|
||||||
c.x = textureLodOffset(edgesTex, coords.xy, 0.0, ivec2(-1, 0)).g;
|
|
||||||
c.y = textureLodOffset(edgesTex, coords.xy, 0.0, ivec2( 0, -1)).r;
|
|
||||||
c.zw = textureLodOffset(edgesTex, coords.zw, 0.0, ivec2( 1, 0)).gr;
|
|
||||||
vec2 e = 2.0 * c.xz + c.yw;
|
|
||||||
float t = float(SMAA_MAX_SEARCH_STEPS_DIAG) - 1.0;
|
|
||||||
e *= step(d.rg, vec2(t, t));
|
|
||||||
|
|
||||||
weights += SMAAAreaDiag(areaTex, d, e, float(subsampleIndices.w)).gr;
|
|
||||||
}
|
|
||||||
|
|
||||||
return weights;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
|
||||||
// Horizontal/Vertical Search Functions
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This allows to determine how much length should we add in the last step
|
|
||||||
* of the searches. It takes the bilinearly interpolated edge (see
|
|
||||||
* @PSEUDO_GATHER4), and adds 0, 1 or 2, depending on which edges and
|
|
||||||
* crossing edges are active.
|
|
||||||
*/
|
|
||||||
float SMAASearchLength(sampler2D searchTex, vec2 e, float bias, float scale) {
|
|
||||||
// Not required if searchTex accesses are set to point:
|
|
||||||
// vec2 SEARCH_TEX_PIXEL_SIZE = 1.0 / vec2(66.0, 33.0);
|
|
||||||
// e = vec2(bias, 0.0) + 0.5 * SEARCH_TEX_PIXEL_SIZE +
|
|
||||||
// e * vec2(scale, 1.0) * vec2(64.0, 32.0) * SEARCH_TEX_PIXEL_SIZE;
|
|
||||||
e.r = bias + e.r * scale;
|
|
||||||
e.g = -e.g;
|
|
||||||
return 255.0 * textureLod(searchTex, e, 0.0).r;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Horizontal/vertical search functions for the 2nd pass.
|
|
||||||
*/
|
|
||||||
float SMAASearchXLeft(sampler2D edgesTex, sampler2D searchTex, vec2 texcoord, float end) {
|
|
||||||
/**
|
|
||||||
* @PSEUDO_GATHER4
|
|
||||||
* This texcoord has been offset by (-0.25, -0.125) in the vertex shader to
|
|
||||||
* sample between edge, thus fetching four edges in a row.
|
|
||||||
* Sampling with different offsets in each direction allows to disambiguate
|
|
||||||
* which edges are active from the four fetched ones.
|
|
||||||
*/
|
|
||||||
vec2 e = vec2(0.0, 1.0);
|
|
||||||
while (texcoord.x > end &&
|
|
||||||
e.g > 0.8281 && // Is there some edge not activated?
|
|
||||||
e.r == 0.0) { // Or is there a crossing edge that breaks the line?
|
|
||||||
e = textureLod(edgesTex, texcoord, 0.0).rg;
|
|
||||||
texcoord -= vec2(2.0, 0.0) * SMAA_PIXEL_SIZE;
|
|
||||||
}
|
|
||||||
|
|
||||||
// We correct the previous (-0.25, -0.125) offset we applied:
|
|
||||||
texcoord.x += 0.25 * SMAA_PIXEL_SIZE.x;
|
|
||||||
|
|
||||||
// The searches are bias by 1, so adjust the coords accordingly:
|
|
||||||
texcoord.x += SMAA_PIXEL_SIZE.x;
|
|
||||||
|
|
||||||
// Disambiguate the length added by the last step:
|
|
||||||
texcoord.x += 2.0 * SMAA_PIXEL_SIZE.x; // Undo last step
|
|
||||||
texcoord.x -= SMAA_PIXEL_SIZE.x * SMAASearchLength(searchTex, e, 0.0, 0.5);
|
|
||||||
|
|
||||||
return texcoord.x;
|
|
||||||
}
|
|
||||||
|
|
||||||
float SMAASearchXRight(sampler2D edgesTex, sampler2D searchTex, vec2 texcoord, float end) {
|
|
||||||
vec2 e = vec2(0.0, 1.0);
|
|
||||||
while (texcoord.x < end &&
|
|
||||||
e.g > 0.8281 && // Is there some edge not activated?
|
|
||||||
e.r == 0.0) { // Or is there a crossing edge that breaks the line?
|
|
||||||
e = textureLod(edgesTex, texcoord, 0.0).rg;
|
|
||||||
texcoord += vec2(2.0, 0.0) * SMAA_PIXEL_SIZE;
|
|
||||||
}
|
|
||||||
|
|
||||||
texcoord.x -= 0.25 * SMAA_PIXEL_SIZE.x;
|
|
||||||
texcoord.x -= SMAA_PIXEL_SIZE.x;
|
|
||||||
texcoord.x -= 2.0 * SMAA_PIXEL_SIZE.x;
|
|
||||||
texcoord.x += SMAA_PIXEL_SIZE.x * SMAASearchLength(searchTex, e, 0.5, 0.5);
|
|
||||||
return texcoord.x;
|
|
||||||
}
|
|
||||||
|
|
||||||
float SMAASearchYUp(sampler2D edgesTex, sampler2D searchTex, vec2 texcoord, float end) {
|
|
||||||
vec2 e = vec2(1.0, 0.0);
|
|
||||||
while (texcoord.y > end &&
|
|
||||||
e.r > 0.8281 && // Is there some edge not activated?
|
|
||||||
e.g == 0.0) { // Or is there a crossing edge that breaks the line?
|
|
||||||
e = textureLod(edgesTex, texcoord, 0.0).rg;
|
|
||||||
texcoord -= vec2(0.0, 2.0) * SMAA_PIXEL_SIZE;
|
|
||||||
}
|
|
||||||
|
|
||||||
texcoord.y += 0.25 * SMAA_PIXEL_SIZE.y;
|
|
||||||
texcoord.y += SMAA_PIXEL_SIZE.y;
|
|
||||||
texcoord.y += 2.0 * SMAA_PIXEL_SIZE.y;
|
|
||||||
texcoord.y -= SMAA_PIXEL_SIZE.y * SMAASearchLength(searchTex, e.gr, 0.0, 0.5);
|
|
||||||
return texcoord.y;
|
|
||||||
}
|
|
||||||
|
|
||||||
float SMAASearchYDown(sampler2D edgesTex, sampler2D searchTex, vec2 texcoord, float end) {
|
|
||||||
vec2 e = vec2(1.0, 0.0);
|
|
||||||
while (texcoord.y < end &&
|
|
||||||
e.r > 0.8281 && // Is there some edge not activated?
|
|
||||||
e.g == 0.0) { // Or is there a crossing edge that breaks the line?
|
|
||||||
e = textureLod(edgesTex, texcoord, 0.0).rg;
|
|
||||||
texcoord += vec2(0.0, 2.0) * SMAA_PIXEL_SIZE;
|
|
||||||
}
|
|
||||||
|
|
||||||
texcoord.y -= 0.25 * SMAA_PIXEL_SIZE.y;
|
|
||||||
texcoord.y -= SMAA_PIXEL_SIZE.y;
|
|
||||||
texcoord.y -= 2.0 * SMAA_PIXEL_SIZE.y;
|
|
||||||
texcoord.y += SMAA_PIXEL_SIZE.y * SMAASearchLength(searchTex, e.gr, 0.5, 0.5);
|
|
||||||
return texcoord.y;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Ok, we have the distance and both crossing edges. So, what are the areas
|
|
||||||
* at each side of current edge?
|
|
||||||
*/
|
|
||||||
vec2 SMAAArea(sampler2D areaTex, vec2 dist, float e1, float e2, float offset) {
|
|
||||||
// Rounding prevents precision errors of bilinear filtering:
|
|
||||||
vec2 texcoord = float(SMAA_AREATEX_MAX_DISTANCE) * round(4.0 * vec2(e1, e2)) + dist;
|
|
||||||
|
|
||||||
// We do a scale and bias for mapping to texel space:
|
|
||||||
texcoord = SMAA_AREATEX_PIXEL_SIZE * texcoord + (0.5 * SMAA_AREATEX_PIXEL_SIZE);
|
|
||||||
|
|
||||||
// Move to proper place, according to the subpixel offset:
|
|
||||||
texcoord.y += SMAA_AREATEX_SUBTEX_SIZE * offset;
|
|
||||||
|
|
||||||
|
|
||||||
return textureLod(areaTex, texcoord, 0.0).rg;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
|
||||||
// Corner Detection Functions
|
|
||||||
|
|
||||||
void SMAADetectHorizontalCornerPattern(sampler2D edgesTex, inout vec2 weights, vec2 texcoord, vec2 d) {
|
|
||||||
#if SMAA_CORNER_ROUNDING < 100 || SMAA_FORCE_CORNER_DETECTION == 1
|
|
||||||
vec4 coords = fma(vec4(d.x, 0.0, d.y, 0.0),
|
|
||||||
SMAA_PIXEL_SIZE.xyxy, texcoord.xyxy);
|
|
||||||
vec2 e;
|
|
||||||
e.r = textureLodOffset(edgesTex, coords.xy, 0.0, ivec2(0.0, 1.0)).r;
|
|
||||||
bool left = abs(d.x) < abs(d.y);
|
|
||||||
e.g = textureLodOffset(edgesTex, coords.xy, 0.0, ivec2(0.0, -2.0)).r;
|
|
||||||
if (left) weights *= clamp(float(SMAA_CORNER_ROUNDING) / 100.0 + 1.0 - e, 0.0, 1.0);
|
|
||||||
|
|
||||||
e.r = textureLodOffset(edgesTex, coords.zw, 0.0, ivec2(1.0, 1.0)).r;
|
|
||||||
e.g = textureLodOffset(edgesTex, coords.zw, 0.0, ivec2(1.0, -2.0)).r;
|
|
||||||
if (!left) weights *= clamp(float(SMAA_CORNER_ROUNDING) / 100.0 + 1.0 - e, 0.0, 1.0);
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
void SMAADetectVerticalCornerPattern(sampler2D edgesTex, inout vec2 weights, vec2 texcoord, vec2 d) {
|
|
||||||
#if SMAA_CORNER_ROUNDING < 100 || SMAA_FORCE_CORNER_DETECTION == 1
|
|
||||||
vec4 coords = fma(vec4(0.0, d.x, 0.0, d.y),
|
|
||||||
SMAA_PIXEL_SIZE.xyxy, texcoord.xyxy);
|
|
||||||
vec2 e;
|
|
||||||
e.r = textureLodOffset(edgesTex, coords.xy, 0.0, ivec2( 1.0, 0.0)).g;
|
|
||||||
bool left = abs(d.x) < abs(d.y);
|
|
||||||
e.g = textureLodOffset(edgesTex, coords.xy, 0.0, ivec2(-2.0, 0.0)).g;
|
|
||||||
if (left) weights *= clamp(float(SMAA_CORNER_ROUNDING) / 100.0 + 1.0 - e, 0.0, 1.0);
|
|
||||||
|
|
||||||
e.r = textureLodOffset(edgesTex, coords.zw, 0.0, ivec2( 1.0, 1.0)).g;
|
|
||||||
e.g = textureLodOffset(edgesTex, coords.zw, 0.0, ivec2(-2.0, 1.0)).g;
|
|
||||||
if (!left) weights *= clamp(float(SMAA_CORNER_ROUNDING) / 100.0 + 1.0 - e, 0.0, 1.0);
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
|
||||||
// Blending Weight Calculation Pixel Shader (Second Pass)
|
|
||||||
|
|
||||||
vec4 SMAABlendingWeightCalculationPS(vec2 texcoord,
|
|
||||||
vec2 pixcoord,
|
|
||||||
vec4 offset[3],
|
|
||||||
sampler2D edgesTex,
|
|
||||||
sampler2D areaTex,
|
|
||||||
sampler2D searchTex,
|
|
||||||
ivec4 subsampleIndices) { // Just pass zero for SMAA 1x, see @SUBSAMPLE_INDICES.
|
|
||||||
vec4 weights = vec4(0.0, 0.0, 0.0, 0.0);
|
|
||||||
|
|
||||||
vec2 e = texture(edgesTex, texcoord).rg;
|
|
||||||
|
|
||||||
//SMAA_BRANCH
|
|
||||||
if (e.g > 0.0) { // Edge at north
|
|
||||||
#if SMAA_MAX_SEARCH_STEPS_DIAG > 0 || SMAA_FORCE_DIAGONAL_DETECTION == 1
|
|
||||||
// Diagonals have both north and west edges, so searching for them in
|
|
||||||
// one of the boundaries is enough.
|
|
||||||
weights.rg = SMAACalculateDiagWeights(edgesTex, areaTex, texcoord, e, subsampleIndices);
|
|
||||||
|
|
||||||
// We give priority to diagonals, so if we find a diagonal we skip
|
|
||||||
// horizontal/vertical processing.
|
|
||||||
//SMAA_BRANCH
|
|
||||||
if (dot(weights.rg, vec2(1.0, 1.0)) == 0.0) {
|
|
||||||
#endif
|
|
||||||
|
|
||||||
vec2 d;
|
|
||||||
|
|
||||||
// Find the distance to the left:
|
|
||||||
vec2 coords;
|
|
||||||
coords.x = SMAASearchXLeft(edgesTex, searchTex, offset[0].xy, offset[2].x);
|
|
||||||
coords.y = offset[1].y; // offset[1].y = texcoord.y - 0.25 * SMAA_PIXEL_SIZE.y (@CROSSING_OFFSET)
|
|
||||||
d.x = coords.x;
|
|
||||||
|
|
||||||
// Now fetch the left crossing edges, two at a time using bilinear
|
|
||||||
// filtering. Sampling at -0.25 (see @CROSSING_OFFSET) enables to
|
|
||||||
// discern what value each edge has:
|
|
||||||
float e1 = textureLod(edgesTex, coords, 0.0).r;
|
|
||||||
|
|
||||||
// Find the distance to the right:
|
|
||||||
coords.x = SMAASearchXRight(edgesTex, searchTex, offset[0].zw, offset[2].y);
|
|
||||||
d.y = coords.x;
|
|
||||||
|
|
||||||
// We want the distances to be in pixel units (doing this here allow to
|
|
||||||
// better interleave arithmetic and memory accesses):
|
|
||||||
d = d / SMAA_PIXEL_SIZE.x - pixcoord.x;
|
|
||||||
|
|
||||||
// SMAAArea below needs a sqrt, as the areas texture is compressed
|
|
||||||
// quadratically:
|
|
||||||
vec2 sqrt_d = sqrt(abs(d));
|
|
||||||
|
|
||||||
// Fetch the right crossing edges:
|
|
||||||
float e2 = textureLodOffset(edgesTex, coords, 0.0, ivec2(1, 0)).r;
|
|
||||||
|
|
||||||
// Ok, we know how this pattern looks like, now it is time for getting
|
|
||||||
// the actual area:
|
|
||||||
weights.rg = SMAAArea(areaTex, sqrt_d, e1, e2, float(subsampleIndices.y));
|
|
||||||
|
|
||||||
// Fix corners:
|
|
||||||
SMAADetectHorizontalCornerPattern(edgesTex, weights.rg, texcoord, d);
|
|
||||||
|
|
||||||
#if SMAA_MAX_SEARCH_STEPS_DIAG > 0 || SMAA_FORCE_DIAGONAL_DETECTION == 1
|
|
||||||
} else
|
|
||||||
e.r = 0.0; // Skip vertical processing.
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
//SMAA_BRANCH
|
|
||||||
if (e.r > 0.0) { // Edge at west
|
|
||||||
vec2 d;
|
|
||||||
|
|
||||||
// Find the distance to the top:
|
|
||||||
vec2 coords;
|
|
||||||
coords.y = SMAASearchYUp(edgesTex, searchTex, offset[1].xy, offset[2].z);
|
|
||||||
coords.x = offset[0].x; // offset[1].x = texcoord.x - 0.25 * SMAA_PIXEL_SIZE.x;
|
|
||||||
d.x = coords.y;
|
|
||||||
|
|
||||||
// Fetch the top crossing edges:
|
|
||||||
float e1 = textureLod(edgesTex, coords, 0.0).g;
|
|
||||||
|
|
||||||
// Find the distance to the bottom:
|
|
||||||
coords.y = SMAASearchYDown(edgesTex, searchTex, offset[1].zw, offset[2].w);
|
|
||||||
d.y = coords.y;
|
|
||||||
|
|
||||||
// We want the distances to be in pixel units:
|
|
||||||
d = d / SMAA_PIXEL_SIZE.y - pixcoord.y;
|
|
||||||
|
|
||||||
// SMAAArea below needs a sqrt, as the areas texture is compressed
|
|
||||||
// quadratically:
|
|
||||||
vec2 sqrt_d = sqrt(abs(d));
|
|
||||||
|
|
||||||
// Fetch the bottom crossing edges:
|
|
||||||
float e2 = textureLodOffset(edgesTex, coords, 0.0, ivec2(0, 1)).g;
|
|
||||||
|
|
||||||
// Get the area for this direction:
|
|
||||||
weights.ba = SMAAArea(areaTex, sqrt_d, e1, e2, float(subsampleIndices.x));
|
|
||||||
|
|
||||||
// Fix corners:
|
|
||||||
SMAADetectVerticalCornerPattern(edgesTex, weights.ba, texcoord, d);
|
|
||||||
|
|
||||||
//return vec4(weights.ba, 0.0, 1.0);
|
|
||||||
}
|
|
||||||
|
|
||||||
return weights;
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* ------------- Header is over -------------- */
|
|
||||||
|
|
||||||
|
|
||||||
uniform sampler2D edge_tex;
|
|
||||||
uniform sampler2D area_tex;
|
|
||||||
uniform sampler2D search_tex;
|
|
||||||
in vec2 texcoord;
|
|
||||||
in vec2 pixcoord;
|
|
||||||
in vec4 offset[3];
|
|
||||||
in vec4 dummy2;
|
|
||||||
void main()
|
|
||||||
{
|
|
||||||
gl_FragColor = SMAABlendingWeightCalculationPS(texcoord, pixcoord, offset, edge_tex, area_tex, search_tex, ivec4(0));
|
|
||||||
|
|
||||||
}
|
|
@ -1,74 +0,0 @@
|
|||||||
#version 410 compatibility
|
|
||||||
#define SMAA_PIXEL_SIZE vec2(1.0 / 512.0, 1.0 / 512.0)
|
|
||||||
|
|
||||||
#define SMAA_THRESHOLD 0.05
|
|
||||||
#define SMAA_MAX_SEARCH_STEPS 32
|
|
||||||
#define SMAA_MAX_SEARCH_STEPS_DIAG 16
|
|
||||||
#define SMAA_CORNER_ROUNDING 25
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef SMAA_DEPTH_THRESHOLD
|
|
||||||
#define SMAA_DEPTH_THRESHOLD (0.1 * SMAA_THRESHOLD)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef SMAA_REPROJECTION
|
|
||||||
#define SMAA_REPROJECTION 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define SMAA_REPROJECTION_WEIGHT_SCALE 30.0
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef SMAA_AREATEX_MAX_DISTANCE
|
|
||||||
#define SMAA_AREATEX_MAX_DISTANCE 16
|
|
||||||
#endif
|
|
||||||
#ifndef SMAA_AREATEX_MAX_DISTANCE_DIAG
|
|
||||||
#define SMAA_AREATEX_MAX_DISTANCE_DIAG 20
|
|
||||||
#endif
|
|
||||||
#define SMAA_AREATEX_PIXEL_SIZE (1.0 / vec2(160.0, 560.0))
|
|
||||||
#define SMAA_AREATEX_SUBTEX_SIZE (1.0 / 7.0)
|
|
||||||
|
|
||||||
|
|
||||||
/* --- Define section is over ---- */
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Blend Weight Calculation Vertex Shader
|
|
||||||
*/
|
|
||||||
void SMAABlendingWeightCalculationVS(vec4 position,
|
|
||||||
out vec4 svPosition,
|
|
||||||
inout vec2 texcoord,
|
|
||||||
out vec2 pixcoord,
|
|
||||||
out vec4 offset[3]) {
|
|
||||||
svPosition = position;
|
|
||||||
|
|
||||||
pixcoord = texcoord / SMAA_PIXEL_SIZE;
|
|
||||||
|
|
||||||
// We will use these offsets for the searches later on (see @PSEUDO_GATHER4):
|
|
||||||
offset[0] = texcoord.xyxy + SMAA_PIXEL_SIZE.xyxy * vec4(-0.25, -0.125, 1.25, -0.125);
|
|
||||||
offset[1] = texcoord.xyxy + SMAA_PIXEL_SIZE.xyxy * vec4(-0.125, -0.25, -0.125, 1.25);
|
|
||||||
|
|
||||||
// And these for the searches, they indicate the ends of the loops:
|
|
||||||
offset[2] = vec4(offset[0].xz, offset[1].yw) +
|
|
||||||
vec4(-2.0, 2.0, -2.0, 2.0) *
|
|
||||||
SMAA_PIXEL_SIZE.xxyy * float(SMAA_MAX_SEARCH_STEPS);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ------------- Header is over -------------- */
|
|
||||||
|
|
||||||
out vec2 texcoord;
|
|
||||||
out vec2 pixcoord;
|
|
||||||
out vec4 offset[3];
|
|
||||||
out vec4 dummy2;
|
|
||||||
|
|
||||||
attribute vec3 vPosition;
|
|
||||||
attribute vec2 vTexCoord;
|
|
||||||
uniform mat4 ProjectionMatrix;
|
|
||||||
|
|
||||||
|
|
||||||
void main()
|
|
||||||
{
|
|
||||||
texcoord = vTexCoord;
|
|
||||||
vec4 dummy1 = vec4(0);
|
|
||||||
SMAABlendingWeightCalculationVS(dummy1, dummy2, texcoord, pixcoord, offset);
|
|
||||||
gl_Position = ProjectionMatrix * vec4(vPosition.xyz, 1.0);
|
|
||||||
}
|
|
@ -1,105 +0,0 @@
|
|||||||
#version 410 compatibility
|
|
||||||
|
|
||||||
#define SMAA_THRESHOLD 0.05
|
|
||||||
#define SMAA_MAX_SEARCH_STEPS 32
|
|
||||||
#define SMAA_MAX_SEARCH_STEPS_DIAG 16
|
|
||||||
#define SMAA_CORNER_ROUNDING 25
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef SMAA_DEPTH_THRESHOLD
|
|
||||||
#define SMAA_DEPTH_THRESHOLD (0.1 * SMAA_THRESHOLD)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef SMAA_REPROJECTION
|
|
||||||
#define SMAA_REPROJECTION 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define SMAA_REPROJECTION_WEIGHT_SCALE 30.0
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef SMAA_AREATEX_MAX_DISTANCE
|
|
||||||
#define SMAA_AREATEX_MAX_DISTANCE 16
|
|
||||||
#endif
|
|
||||||
#ifndef SMAA_AREATEX_MAX_DISTANCE_DIAG
|
|
||||||
#define SMAA_AREATEX_MAX_DISTANCE_DIAG 20
|
|
||||||
#endif
|
|
||||||
#define SMAA_AREATEX_PIXEL_SIZE (1.0 / vec2(160.0, 560.0))
|
|
||||||
#define SMAA_AREATEX_SUBTEX_SIZE (1.0 / 7.0)
|
|
||||||
|
|
||||||
|
|
||||||
/* --- Define section is over ---- */
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Color Edge Detection
|
|
||||||
*
|
|
||||||
* IMPORTANT NOTICE: color edge detection requires gamma-corrected colors, and
|
|
||||||
* thus 'colorTex' should be a non-sRGB texture.
|
|
||||||
*/
|
|
||||||
vec4 SMAAColorEdgeDetectionPS(vec2 texcoord,
|
|
||||||
vec4 offset[3],
|
|
||||||
sampler2D colorTex
|
|
||||||
) {
|
|
||||||
vec2 threshold = vec2(SMAA_THRESHOLD, SMAA_THRESHOLD);
|
|
||||||
|
|
||||||
// Calculate color deltas:
|
|
||||||
vec4 delta;
|
|
||||||
vec3 C = texture(colorTex, texcoord).rgb;
|
|
||||||
|
|
||||||
vec3 Cleft = texture(colorTex, offset[0].xy).rgb;
|
|
||||||
vec3 t = abs(C - Cleft);
|
|
||||||
delta.x = max(max(t.r, t.g), t.b);
|
|
||||||
|
|
||||||
vec3 Ctop = texture(colorTex, offset[0].zw).rgb;
|
|
||||||
t = abs(C - Ctop);
|
|
||||||
delta.y = max(max(t.r, t.g), t.b);
|
|
||||||
|
|
||||||
// We do the usual threshold:
|
|
||||||
vec2 edges = step(threshold, delta.xy);
|
|
||||||
|
|
||||||
// Then discard if there is no edge:
|
|
||||||
if (dot(edges, vec2(1.0, 1.0)) == 0.0)
|
|
||||||
discard;
|
|
||||||
|
|
||||||
// Calculate right and bottom deltas:
|
|
||||||
vec3 Cright = texture(colorTex, offset[1].xy).rgb;
|
|
||||||
t = abs(C - Cright);
|
|
||||||
delta.z = max(max(t.r, t.g), t.b);
|
|
||||||
|
|
||||||
vec3 Cbottom = texture(colorTex, offset[1].zw).rgb;
|
|
||||||
t = abs(C - Cbottom);
|
|
||||||
delta.w = max(max(t.r, t.g), t.b);
|
|
||||||
|
|
||||||
// Calculate the maximum delta in the direct neighborhood:
|
|
||||||
float maxDelta = max(max(max(delta.x, delta.y), delta.z), delta.w);
|
|
||||||
|
|
||||||
// Calculate left-left and top-top deltas:
|
|
||||||
vec3 Cleftleft = texture(colorTex, offset[2].xy).rgb;
|
|
||||||
t = abs(C - Cleftleft);
|
|
||||||
delta.z = max(max(t.r, t.g), t.b);
|
|
||||||
|
|
||||||
vec3 Ctoptop = texture(colorTex, offset[2].zw).rgb;
|
|
||||||
t = abs(C - Ctoptop);
|
|
||||||
delta.w = max(max(t.r, t.g), t.b);
|
|
||||||
|
|
||||||
// Calculate the final maximum delta:
|
|
||||||
maxDelta = max(max(maxDelta, delta.z), delta.w);
|
|
||||||
|
|
||||||
// Local contrast adaptation in action:
|
|
||||||
edges.xy *= step(0.5 * maxDelta, delta.xy);
|
|
||||||
|
|
||||||
return vec4(edges, 0.0, 0.0);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* ------------- Header is over -------------- */
|
|
||||||
|
|
||||||
uniform sampler2D albedo_tex;
|
|
||||||
in vec2 texcoord;
|
|
||||||
in vec4 offset[3];
|
|
||||||
in vec4 dummy2;
|
|
||||||
void main()
|
|
||||||
{
|
|
||||||
gl_FragColor = SMAAColorEdgeDetectionPS(texcoord, offset, albedo_tex);
|
|
||||||
}
|
|
@ -1,67 +0,0 @@
|
|||||||
#version 410 compatibility
|
|
||||||
#define SMAA_PIXEL_SIZE vec2(1.0/512.0, 1.0/512.0)
|
|
||||||
|
|
||||||
#define SMAA_THRESHOLD 0.05
|
|
||||||
#define SMAA_MAX_SEARCH_STEPS 32
|
|
||||||
#define SMAA_MAX_SEARCH_STEPS_DIAG 16
|
|
||||||
#define SMAA_CORNER_ROUNDING 25
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef SMAA_DEPTH_THRESHOLD
|
|
||||||
#define SMAA_DEPTH_THRESHOLD (0.1 * SMAA_THRESHOLD)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef SMAA_REPROJECTION
|
|
||||||
#define SMAA_REPROJECTION 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define SMAA_REPROJECTION_WEIGHT_SCALE 30.0
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef SMAA_AREATEX_MAX_DISTANCE
|
|
||||||
#define SMAA_AREATEX_MAX_DISTANCE 16
|
|
||||||
#endif
|
|
||||||
#ifndef SMAA_AREATEX_MAX_DISTANCE_DIAG
|
|
||||||
#define SMAA_AREATEX_MAX_DISTANCE_DIAG 20
|
|
||||||
#endif
|
|
||||||
#define SMAA_AREATEX_PIXEL_SIZE (1.0 / vec2(160.0, 560.0))
|
|
||||||
#define SMAA_AREATEX_SUBTEX_SIZE (1.0 / 7.0)
|
|
||||||
|
|
||||||
|
|
||||||
/* --- Define section is over ---- */
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Edge Detection Vertex Shader
|
|
||||||
*/
|
|
||||||
void SMAAEdgeDetectionVS(vec4 position,
|
|
||||||
out vec4 svPosition,
|
|
||||||
inout vec2 texcoord,
|
|
||||||
out vec4 offset[3]) {
|
|
||||||
svPosition = position;
|
|
||||||
|
|
||||||
offset[0] = texcoord.xyxy + SMAA_PIXEL_SIZE.xyxy * vec4(-1.0, 0.0, 0.0, -1.0);
|
|
||||||
offset[1] = texcoord.xyxy + SMAA_PIXEL_SIZE.xyxy * vec4( 1.0, 0.0, 0.0, 1.0);
|
|
||||||
offset[2] = texcoord.xyxy + SMAA_PIXEL_SIZE.xyxy * vec4(-2.0, 0.0, 0.0, -2.0);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ------------- Header is over -------------- */
|
|
||||||
|
|
||||||
out vec2 texcoord;
|
|
||||||
out vec4 offset[3];
|
|
||||||
out vec4 dummy2;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
attribute vec3 vPosition;
|
|
||||||
attribute vec2 vTexCoord;
|
|
||||||
uniform mat4 ProjectionMatrix;
|
|
||||||
|
|
||||||
|
|
||||||
void main()
|
|
||||||
{
|
|
||||||
texcoord = vTexCoord;
|
|
||||||
vec4 dummy1 = vec4(0);
|
|
||||||
SMAAEdgeDetectionVS(dummy1, dummy2, texcoord, offset);
|
|
||||||
gl_Position = ProjectionMatrix * vec4(vPosition.xyz, 1.0);
|
|
||||||
}
|
|
@ -1,102 +0,0 @@
|
|||||||
#version 410 compatibility
|
|
||||||
#define SMAA_PIXEL_SIZE vec2(1.0 / 512.0, 1.0 / 512.0)
|
|
||||||
|
|
||||||
#define SMAA_THRESHOLD 0.05
|
|
||||||
#define SMAA_MAX_SEARCH_STEPS 32
|
|
||||||
#define SMAA_MAX_SEARCH_STEPS_DIAG 16
|
|
||||||
#define SMAA_CORNER_ROUNDING 25
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef SMAA_DEPTH_THRESHOLD
|
|
||||||
#define SMAA_DEPTH_THRESHOLD (0.1 * SMAA_THRESHOLD)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef SMAA_REPROJECTION
|
|
||||||
#define SMAA_REPROJECTION 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define SMAA_REPROJECTION_WEIGHT_SCALE 30.0
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef SMAA_AREATEX_MAX_DISTANCE
|
|
||||||
#define SMAA_AREATEX_MAX_DISTANCE 16
|
|
||||||
#endif
|
|
||||||
#ifndef SMAA_AREATEX_MAX_DISTANCE_DIAG
|
|
||||||
#define SMAA_AREATEX_MAX_DISTANCE_DIAG 20
|
|
||||||
#endif
|
|
||||||
#define SMAA_AREATEX_PIXEL_SIZE (1.0 / vec2(160.0, 560.0))
|
|
||||||
#define SMAA_AREATEX_SUBTEX_SIZE (1.0 / 7.0)
|
|
||||||
|
|
||||||
|
|
||||||
/* --- Define section is over ---- */
|
|
||||||
|
|
||||||
vec4 SMAANeighborhoodBlendingPS(vec2 texcoord,
|
|
||||||
vec4 offset[2],
|
|
||||||
sampler2D colorTex,
|
|
||||||
sampler2D blendTex) {
|
|
||||||
// Fetch the blending weights for current pixel:
|
|
||||||
vec4 a;
|
|
||||||
a.xz = texture(blendTex, texcoord).xz;
|
|
||||||
a.y = texture(blendTex, offset[1].zw).g;
|
|
||||||
a.w = texture(blendTex, offset[1].xy).a;
|
|
||||||
|
|
||||||
// Is there any blending weight with a value greater than 0.0?
|
|
||||||
//SMAA_BRANCH
|
|
||||||
if (dot(a, vec4(1.0, 1.0, 1.0, 1.0)) < 1e-5)
|
|
||||||
return textureLod(colorTex, texcoord, 0.0);
|
|
||||||
else {
|
|
||||||
vec4 color = vec4(0.0, 0.0, 0.0, 0.0);
|
|
||||||
|
|
||||||
// Up to 4 lines can be crossing a pixel (one through each edge). We
|
|
||||||
// favor blending by choosing the line with the maximum weight for each
|
|
||||||
// direction:
|
|
||||||
vec2 offset;
|
|
||||||
offset.x = a.a > a.b? a.a : -a.b; // left vs. right
|
|
||||||
offset.y = a.g > a.r? a.g : -a.r; // top vs. bottom
|
|
||||||
|
|
||||||
// Then we go in the direction that has the maximum weight:
|
|
||||||
if (abs(offset.x) > abs(offset.y)) // horizontal vs. vertical
|
|
||||||
offset.y = 0.0;
|
|
||||||
else
|
|
||||||
offset.x = 0.0;
|
|
||||||
|
|
||||||
#if SMAA_REPROJECTION == 1
|
|
||||||
// Fetch the opposite color and lerp by hand:
|
|
||||||
vec4 C = textureLod(colorTex, texcoord, 0.0);
|
|
||||||
texcoord += sign(offset) * SMAA_PIXEL_SIZE;
|
|
||||||
vec4 Cop = textureLod(colorTex, texcoord, 0.0);
|
|
||||||
float s = abs(offset.x) > abs(offset.y)? abs(offset.x) : abs(offset.y);
|
|
||||||
|
|
||||||
// Unpack the velocity values:
|
|
||||||
C.a *= C.a;
|
|
||||||
Cop.a *= Cop.a;
|
|
||||||
|
|
||||||
// Lerp the colors:
|
|
||||||
vec4 Caa = mix(C, Cop, s);
|
|
||||||
|
|
||||||
// Unpack velocity and return the resulting value:
|
|
||||||
Caa.a = sqrt(Caa.a);
|
|
||||||
return Caa;
|
|
||||||
#else
|
|
||||||
// Fetch the opposite color and lerp by hand:
|
|
||||||
vec4 C = textureLod(colorTex, texcoord, 0.0);
|
|
||||||
texcoord += sign(offset) * SMAA_PIXEL_SIZE;
|
|
||||||
vec4 Cop = textureLod(colorTex, texcoord, 0.0);
|
|
||||||
float s = abs(offset.x) > abs(offset.y)? abs(offset.x) : abs(offset.y);
|
|
||||||
return mix(C, Cop, s);
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ------------- Header is over -------------- */
|
|
||||||
|
|
||||||
uniform sampler2D albedo_tex;
|
|
||||||
uniform sampler2D blend_tex;
|
|
||||||
in vec2 texcoord;
|
|
||||||
in vec4 offset[2];
|
|
||||||
in vec4 dummy2;
|
|
||||||
void main()
|
|
||||||
{
|
|
||||||
gl_FragColor = SMAANeighborhoodBlendingPS(texcoord, offset, albedo_tex, blend_tex);
|
|
||||||
}
|
|
@ -1,65 +0,0 @@
|
|||||||
#version 410 compatibility
|
|
||||||
#define SMAA_PIXEL_SIZE vec2(1.0 / 512.0, 1.0 / 512.0)
|
|
||||||
|
|
||||||
#define SMAA_THRESHOLD 0.05
|
|
||||||
#define SMAA_MAX_SEARCH_STEPS 32
|
|
||||||
#define SMAA_MAX_SEARCH_STEPS_DIAG 16
|
|
||||||
#define SMAA_CORNER_ROUNDING 25
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef SMAA_DEPTH_THRESHOLD
|
|
||||||
#define SMAA_DEPTH_THRESHOLD (0.1 * SMAA_THRESHOLD)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef SMAA_REPROJECTION
|
|
||||||
#define SMAA_REPROJECTION 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define SMAA_REPROJECTION_WEIGHT_SCALE 30.0
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef SMAA_AREATEX_MAX_DISTANCE
|
|
||||||
#define SMAA_AREATEX_MAX_DISTANCE 16
|
|
||||||
#endif
|
|
||||||
#ifndef SMAA_AREATEX_MAX_DISTANCE_DIAG
|
|
||||||
#define SMAA_AREATEX_MAX_DISTANCE_DIAG 20
|
|
||||||
#endif
|
|
||||||
#define SMAA_AREATEX_PIXEL_SIZE (1.0 / vec2(160.0, 560.0))
|
|
||||||
#define SMAA_AREATEX_SUBTEX_SIZE (1.0 / 7.0)
|
|
||||||
|
|
||||||
|
|
||||||
/* --- Define section is over ---- */
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Neighborhood Blending Vertex Shader
|
|
||||||
*/
|
|
||||||
void SMAANeighborhoodBlendingVS(vec4 position,
|
|
||||||
out vec4 svPosition,
|
|
||||||
inout vec2 texcoord,
|
|
||||||
out vec4 offset[2]) {
|
|
||||||
svPosition = position;
|
|
||||||
|
|
||||||
offset[0] = texcoord.xyxy + SMAA_PIXEL_SIZE.xyxy * vec4(-1.0, 0.0, 0.0, -1.0);
|
|
||||||
offset[1] = texcoord.xyxy + SMAA_PIXEL_SIZE.xyxy * vec4( 1.0, 0.0, 0.0, 1.0);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* ------------- Header is over -------------- */
|
|
||||||
|
|
||||||
|
|
||||||
out vec2 texcoord;
|
|
||||||
out vec4 offset[2];
|
|
||||||
out vec4 dummy2;
|
|
||||||
|
|
||||||
attribute vec3 vPosition;
|
|
||||||
attribute vec2 vTexCoord;
|
|
||||||
uniform mat4 ProjectionMatrix;
|
|
||||||
|
|
||||||
|
|
||||||
void main()
|
|
||||||
{
|
|
||||||
texcoord = vTexCoord;
|
|
||||||
vec4 dummy1 = vec4(0);
|
|
||||||
SMAANeighborhoodBlendingVS(dummy1, dummy2, texcoord, offset);
|
|
||||||
gl_Position = ProjectionMatrix * vec4(vPosition.xyz, 1.0);
|
|
||||||
}
|
|
Binary file not shown.
Binary file not shown.
@ -11,15 +11,142 @@
|
|||||||
|
|
||||||
TMyApplication* Application;
|
TMyApplication* Application;
|
||||||
|
|
||||||
|
#define USE_SHADER_X16
|
||||||
#define AREATEX_WIDTH 160
|
|
||||||
#define AREATEX_HEIGHT 560
|
|
||||||
#define SEARCHTEX_WIDTH 66
|
|
||||||
#define SEARCHTEX_HEIGHT 33
|
|
||||||
|
|
||||||
|
|
||||||
GLuint area_tex;
|
#ifdef USE_SHADER_X16
|
||||||
GLuint search_tex;
|
|
||||||
|
|
||||||
|
std::vector<TRenderPair> linesToRenderBoxesX16(const std::vector<std::pair<Vector2f, Vector2f>>& lineArr)
|
||||||
|
{
|
||||||
|
std::vector<TRenderPair> lineRenderPairArr;
|
||||||
|
|
||||||
|
size_t boxCount = lineArr.size() / 16;
|
||||||
|
|
||||||
|
if (lineArr.size() % 16 > 0)
|
||||||
|
{
|
||||||
|
boxCount++;
|
||||||
|
}
|
||||||
|
|
||||||
|
lineRenderPairArr.resize(boxCount);
|
||||||
|
|
||||||
|
//Set some initial values:
|
||||||
|
for (size_t i = 0; i < lineRenderPairArr.size(); i++)
|
||||||
|
{
|
||||||
|
|
||||||
|
for (size_t j = 0; j < 16; j++)
|
||||||
|
{
|
||||||
|
lineRenderPairArr[i].first.Vec4Map["lineParams" + boost::lexical_cast<std::string>(j)] = Vector4f(0, 0, 9999, 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (size_t i = 0; i < lineArr.size(); i++)
|
||||||
|
{
|
||||||
|
|
||||||
|
size_t boxIndex = i / 16;
|
||||||
|
|
||||||
|
Vector2f startPoint = lineArr[i].first;
|
||||||
|
Vector2f endPoint = lineArr[i].second;
|
||||||
|
|
||||||
|
|
||||||
|
auto& pair = lineRenderPairArr[boxIndex];
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
pair.second.Data.Vec3CoordArr[CONST_STRING_POSITION_ATTRIB].push_back(Vector3f(startPoint(0), startPoint(1), 0));
|
||||||
|
pair.second.Data.Vec3CoordArr[CONST_STRING_POSITION_ATTRIB].push_back(Vector3f(startPoint(0), endPoint(1), 0));
|
||||||
|
pair.second.Data.Vec3CoordArr[CONST_STRING_POSITION_ATTRIB].push_back(Vector3f(endPoint(0), endPoint(1), 0));
|
||||||
|
pair.second.Data.Vec3CoordArr[CONST_STRING_POSITION_ATTRIB].push_back(Vector3f(startPoint(0), startPoint(1), 0));
|
||||||
|
pair.second.Data.Vec3CoordArr[CONST_STRING_POSITION_ATTRIB].push_back(Vector3f(endPoint(0), endPoint(1), 0));
|
||||||
|
pair.second.Data.Vec3CoordArr[CONST_STRING_POSITION_ATTRIB].push_back(Vector3f(endPoint(0), startPoint(1), 0));
|
||||||
|
|
||||||
|
pair.second.Data.Vec4CoordArr[CONST_STRING_COLOR_ATTRIB].push_back(Vector4f(1, 0, 0, 1));
|
||||||
|
pair.second.Data.Vec4CoordArr[CONST_STRING_COLOR_ATTRIB].push_back(Vector4f(1, 0, 0, 1));
|
||||||
|
pair.second.Data.Vec4CoordArr[CONST_STRING_COLOR_ATTRIB].push_back(Vector4f(1, 0, 0, 1));
|
||||||
|
pair.second.Data.Vec4CoordArr[CONST_STRING_COLOR_ATTRIB].push_back(Vector4f(1, 0, 0, 1));
|
||||||
|
pair.second.Data.Vec4CoordArr[CONST_STRING_COLOR_ATTRIB].push_back(Vector4f(1, 0, 0, 1));
|
||||||
|
pair.second.Data.Vec4CoordArr[CONST_STRING_COLOR_ATTRIB].push_back(Vector4f(1, 0, 0, 1));
|
||||||
|
|
||||||
|
Vector2f lineVec = endPoint - startPoint;
|
||||||
|
Vector2f lineNormVec = { -lineVec(1), lineVec(0) };
|
||||||
|
|
||||||
|
lineNormVec.normalize();
|
||||||
|
|
||||||
|
//float distance = abs(normVec.x*(position.x - startPoint.x) + normVec.y*(position.y - startPoint.y));
|
||||||
|
//distance = a*x + b*y + c, here we calculate a, b,c and pass them to shader
|
||||||
|
float a = lineNormVec(0);
|
||||||
|
float b = lineNormVec(1);
|
||||||
|
float c = -(lineNormVec(0)*startPoint(0) + lineNormVec(1)*startPoint(1));
|
||||||
|
|
||||||
|
|
||||||
|
pair.first.Vec4Map["lineParams" + boost::lexical_cast<std::string>(i % 16)] = Vector4f(a, b, c, 0);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
for (auto& pair : lineRenderPairArr)
|
||||||
|
{
|
||||||
|
pair.second.RefreshBuffer();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
return lineRenderPairArr;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#else
|
||||||
|
|
||||||
|
|
||||||
|
std::vector<TRenderPair> linesToRenderBoxes(const std::vector<std::pair<Vector2f, Vector2f>>& lineArr)
|
||||||
|
{
|
||||||
|
std::vector<TRenderPair> lineRenderPairArr;
|
||||||
|
|
||||||
|
lineRenderPairArr.resize(lineArr.size());
|
||||||
|
|
||||||
|
for (size_t i = 0; i < lineArr.size(); i++)
|
||||||
|
{
|
||||||
|
|
||||||
|
Vector2f startPoint = lineArr[i].first;
|
||||||
|
Vector2f endPoint = lineArr[i].second;
|
||||||
|
|
||||||
|
|
||||||
|
auto& pair = lineRenderPairArr[i];
|
||||||
|
|
||||||
|
|
||||||
|
pair.second.Data.Vec3CoordArr[CONST_STRING_POSITION_ATTRIB].push_back(Vector3f(startPoint(0), startPoint(1), 0));
|
||||||
|
pair.second.Data.Vec3CoordArr[CONST_STRING_POSITION_ATTRIB].push_back(Vector3f(startPoint(0), endPoint(1), 0));
|
||||||
|
pair.second.Data.Vec3CoordArr[CONST_STRING_POSITION_ATTRIB].push_back(Vector3f(endPoint(0), endPoint(1), 0));
|
||||||
|
pair.second.Data.Vec3CoordArr[CONST_STRING_POSITION_ATTRIB].push_back(Vector3f(startPoint(0), startPoint(1), 0));
|
||||||
|
pair.second.Data.Vec3CoordArr[CONST_STRING_POSITION_ATTRIB].push_back(Vector3f(endPoint(0), endPoint(1), 0));
|
||||||
|
pair.second.Data.Vec3CoordArr[CONST_STRING_POSITION_ATTRIB].push_back(Vector3f(endPoint(0), startPoint(1), 0));
|
||||||
|
|
||||||
|
pair.second.Data.Vec4CoordArr[CONST_STRING_COLOR_ATTRIB].push_back(Vector4f(1, 0, 0, 1));
|
||||||
|
pair.second.Data.Vec4CoordArr[CONST_STRING_COLOR_ATTRIB].push_back(Vector4f(1, 0, 0, 1));
|
||||||
|
pair.second.Data.Vec4CoordArr[CONST_STRING_COLOR_ATTRIB].push_back(Vector4f(1, 0, 0, 1));
|
||||||
|
pair.second.Data.Vec4CoordArr[CONST_STRING_COLOR_ATTRIB].push_back(Vector4f(1, 0, 0, 1));
|
||||||
|
pair.second.Data.Vec4CoordArr[CONST_STRING_COLOR_ATTRIB].push_back(Vector4f(1, 0, 0, 1));
|
||||||
|
pair.second.Data.Vec4CoordArr[CONST_STRING_COLOR_ATTRIB].push_back(Vector4f(1, 0, 0, 1));
|
||||||
|
|
||||||
|
Vector2f lineVec = endPoint - startPoint;
|
||||||
|
Vector2f lineNormVec = { -lineVec(1), lineVec(0) };
|
||||||
|
|
||||||
|
lineNormVec.normalize();
|
||||||
|
|
||||||
|
//float distance = abs(normVec.x*(position.x - startPoint.x) + normVec.y*(position.y - startPoint.y));
|
||||||
|
//distance = a*x + b*y + c, here we calculate a, b,c and pass them to shader
|
||||||
|
float a = lineNormVec(0);
|
||||||
|
float b = lineNormVec(1);
|
||||||
|
float c = -(lineNormVec(0)*startPoint(0) + lineNormVec(1)*startPoint(1));
|
||||||
|
|
||||||
|
pair.first.Vec4Map["lineParams"] = Vector4f(a, b, c, 0);
|
||||||
|
|
||||||
|
pair.second.RefreshBuffer();
|
||||||
|
}
|
||||||
|
|
||||||
|
return lineRenderPairArr;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
void TMyApplication::InnerInit()
|
void TMyApplication::InnerInit()
|
||||||
@ -46,132 +173,50 @@ void TMyApplication::InnerInit()
|
|||||||
srand (static_cast<size_t>(time(NULL)));
|
srand (static_cast<size_t>(time(NULL)));
|
||||||
|
|
||||||
ResourceManager->ShaderManager.AddShader("DefaultShader", "shader1vertex.txt", "shader1fragment.txt");
|
ResourceManager->ShaderManager.AddShader("DefaultShader", "shader1vertex.txt", "shader1fragment.txt");
|
||||||
ResourceManager->ShaderManager.AddShader("FrameShader", "frameshader_vertex.txt", "frameshader_fragment.txt");
|
|
||||||
ResourceManager->ShaderManager.AddShader("ColorShader", "color_vertex.txt", "color_fragment.txt");
|
ResourceManager->ShaderManager.AddShader("ColorShader", "color_vertex.txt", "color_fragment.txt");
|
||||||
|
|
||||||
|
#ifdef USE_SHADER_X16
|
||||||
|
ResourceManager->ShaderManager.AddShader("AntialiasingShader", "ms_vertex.txt", "ms_fragment_x16.txt");
|
||||||
|
#else
|
||||||
|
ResourceManager->ShaderManager.AddShader("AntialiasingShader", "ms_vertex.txt", "ms_fragment.txt");
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
ResourceManager->ShaderManager.AddShader("SmaaEdge", "smaa/edge_vertex.txt", "smaa/edge_fragment.txt");
|
|
||||||
ResourceManager->ShaderManager.AddShader("SmaaBlend", "smaa/blend_vertex.txt", "smaa/blend_fragment.txt");
|
|
||||||
ResourceManager->ShaderManager.AddShader("SmaaNeighborhood", "smaa/neighborhood_vertex.txt", "smaa/neighborhood_fragment.txt");
|
|
||||||
|
|
||||||
Renderer->PushShader("DefaultShader");
|
Renderer->PushShader("DefaultShader");
|
||||||
|
|
||||||
ResourceManager->TexList.AddTexture("console_bkg.bmp");
|
ResourceManager->TexList.AddTexture("console_bkg.bmp");
|
||||||
|
|
||||||
ResourceManager->FrameManager.AddFrameRenderBuffer("AlbedoBuffer", 512, 512);
|
|
||||||
ResourceManager->FrameManager.AddFrameRenderBuffer("EdgeBuffer", 512, 512);
|
|
||||||
ResourceManager->FrameManager.AddFrameRenderBuffer("BlendBuffer", 512, 512);
|
|
||||||
|
|
||||||
pair.second.Data.Vec3CoordArr[CONST_STRING_POSITION_ATTRIB].push_back(Vector3f(0, 0, 0));
|
std::vector<std::pair<Vector2f, Vector2f>> lineArr;
|
||||||
pair.second.Data.Vec3CoordArr[CONST_STRING_POSITION_ATTRIB].push_back(Vector3f(0, 512, 0));
|
|
||||||
pair.second.Data.Vec3CoordArr[CONST_STRING_POSITION_ATTRIB].push_back(Vector3f(512, 512, 0));
|
for (int i = 0; i < 10; i++)
|
||||||
pair.second.Data.Vec3CoordArr[CONST_STRING_POSITION_ATTRIB].push_back(Vector3f(0, 0, 0));
|
{
|
||||||
pair.second.Data.Vec3CoordArr[CONST_STRING_POSITION_ATTRIB].push_back(Vector3f(512, 512, 0));
|
lineArr.push_back({ {10.f + i * 20.f, 10.f}, { 20.f + i * 20.f, 400.f } });
|
||||||
pair.second.Data.Vec3CoordArr[CONST_STRING_POSITION_ATTRIB].push_back(Vector3f(512, 0, 0));
|
|
||||||
|
lineArr.push_back({ { 20.f + i * 20.f, 400.f },{ 30.f + i * 20.f, 10.f } });
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
//Choose colored or black and white -- Vladislav Khorev vladislav.khorev@fishrungames.com
|
#ifdef USE_SHADER_X16
|
||||||
#if 1
|
lineRenderPairArr = linesToRenderBoxesX16(lineArr);
|
||||||
pair.second.Data.Vec4CoordArr[CONST_STRING_COLOR_ATTRIB].push_back(Vector4f(1, 0, 0, 1));
|
|
||||||
pair.second.Data.Vec4CoordArr[CONST_STRING_COLOR_ATTRIB].push_back(Vector4f(1, 0, 0, 1));
|
|
||||||
pair.second.Data.Vec4CoordArr[CONST_STRING_COLOR_ATTRIB].push_back(Vector4f(0, 1, 0, 1));
|
|
||||||
pair.second.Data.Vec4CoordArr[CONST_STRING_COLOR_ATTRIB].push_back(Vector4f(0, 0, 1, 1));
|
|
||||||
pair.second.Data.Vec4CoordArr[CONST_STRING_COLOR_ATTRIB].push_back(Vector4f(0, 0, 1, 1));
|
|
||||||
pair.second.Data.Vec4CoordArr[CONST_STRING_COLOR_ATTRIB].push_back(Vector4f(0, 1, 0, 1));
|
|
||||||
#else
|
#else
|
||||||
|
lineRenderPairArr = linesToRenderBoxes(lineArr);
|
||||||
pair.second.Data.Vec4CoordArr[CONST_STRING_COLOR_ATTRIB].push_back(Vector4f(1, 1, 1, 1));
|
|
||||||
pair.second.Data.Vec4CoordArr[CONST_STRING_COLOR_ATTRIB].push_back(Vector4f(1, 1, 1, 1));
|
|
||||||
pair.second.Data.Vec4CoordArr[CONST_STRING_COLOR_ATTRIB].push_back(Vector4f(1, 1, 1, 1));
|
|
||||||
pair.second.Data.Vec4CoordArr[CONST_STRING_COLOR_ATTRIB].push_back(Vector4f(0, 0, 0, 1));
|
|
||||||
pair.second.Data.Vec4CoordArr[CONST_STRING_COLOR_ATTRIB].push_back(Vector4f(0, 0, 0, 1));
|
|
||||||
pair.second.Data.Vec4CoordArr[CONST_STRING_COLOR_ATTRIB].push_back(Vector4f(0, 0, 0, 1));
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
pair.first.ShaderName = "ColorShader";
|
|
||||||
|
|
||||||
pair.second.RefreshBuffer();
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
rect.second.Data.Vec3CoordArr[CONST_STRING_POSITION_ATTRIB].push_back(Vector3f(0, 0, 0));
|
|
||||||
rect.second.Data.Vec3CoordArr[CONST_STRING_POSITION_ATTRIB].push_back(Vector3f(0, 512, 0));
|
|
||||||
rect.second.Data.Vec3CoordArr[CONST_STRING_POSITION_ATTRIB].push_back(Vector3f(512, 512, 0));
|
|
||||||
rect.second.Data.Vec3CoordArr[CONST_STRING_POSITION_ATTRIB].push_back(Vector3f(512, 512, 0));
|
|
||||||
rect.second.Data.Vec3CoordArr[CONST_STRING_POSITION_ATTRIB].push_back(Vector3f(512, 0, 0));
|
|
||||||
rect.second.Data.Vec3CoordArr[CONST_STRING_POSITION_ATTRIB].push_back(Vector3f(0, 0, 0));
|
|
||||||
|
|
||||||
rect.second.Data.Vec2CoordArr[CONST_STRING_TEXCOORD_ATTRIB].push_back(Vector2f(0, 0));
|
|
||||||
rect.second.Data.Vec2CoordArr[CONST_STRING_TEXCOORD_ATTRIB].push_back(Vector2f(0, 1));
|
|
||||||
rect.second.Data.Vec2CoordArr[CONST_STRING_TEXCOORD_ATTRIB].push_back(Vector2f(1, 1));
|
|
||||||
rect.second.Data.Vec2CoordArr[CONST_STRING_TEXCOORD_ATTRIB].push_back(Vector2f(1, 1));
|
|
||||||
rect.second.Data.Vec2CoordArr[CONST_STRING_TEXCOORD_ATTRIB].push_back(Vector2f(1, 0));
|
|
||||||
rect.second.Data.Vec2CoordArr[CONST_STRING_TEXCOORD_ATTRIB].push_back(Vector2f(0, 0));
|
|
||||||
|
|
||||||
|
|
||||||
rect.second.RefreshBuffer();
|
|
||||||
|
|
||||||
Renderer->SetOrthoProjection();
|
Renderer->SetOrthoProjection();
|
||||||
|
|
||||||
Renderer->SetFullScreenViewport();
|
Renderer->SetFullScreenViewport();
|
||||||
|
|
||||||
glDisable(GL_BLEND); //Don't forget to disable blending or whole thing will not work!!! -- Vladislav Khorev vladislav.khorev@fishrungames.com
|
|
||||||
|
|
||||||
Inited = true;
|
Inited = true;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//This is stuff from original https://github.com/scrawl/smaa-opengl
|
|
||||||
//We must have these textures to be used for pattern matching or something -- Vladislav Khorev vladislav.khorev@fishrungames.com
|
|
||||||
|
|
||||||
unsigned char* buffer = 0;
|
|
||||||
FILE* f = 0;
|
|
||||||
|
|
||||||
buffer = new unsigned char[1024 * 1024];
|
|
||||||
f = fopen((ST::PathToResources + "smaa/smaa_area.raw").c_str(), "rb"); //rb stands for "read binary file"
|
|
||||||
|
|
||||||
if (!f)
|
|
||||||
{
|
|
||||||
std::cerr << "Couldn't open smaa_area.raw.\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
fread(buffer, AREATEX_WIDTH * AREATEX_HEIGHT * 2, 1, f);
|
|
||||||
fclose(f);
|
|
||||||
|
|
||||||
f = 0;
|
|
||||||
|
|
||||||
glGenTextures(1, &area_tex);
|
|
||||||
glBindTexture(GL_TEXTURE_2D, area_tex);
|
|
||||||
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
|
||||||
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
|
|
||||||
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
|
|
||||||
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
|
|
||||||
glTexImage2D(GL_TEXTURE_2D, 0, GL_RG8, (GLsizei)AREATEX_WIDTH, (GLsizei)AREATEX_HEIGHT, 0, GL_RG, GL_UNSIGNED_BYTE, buffer);
|
|
||||||
|
|
||||||
f = fopen((ST::PathToResources + "smaa/smaa_search.raw").c_str(), "rb");
|
|
||||||
|
|
||||||
if (!f)
|
|
||||||
{
|
|
||||||
std::cerr << "Couldn't open smaa_search.raw.\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
fread(buffer, SEARCHTEX_WIDTH * SEARCHTEX_HEIGHT, 1, f);
|
|
||||||
fclose(f);
|
|
||||||
|
|
||||||
f = 0;
|
|
||||||
|
|
||||||
glGenTextures(1, &search_tex);
|
|
||||||
glBindTexture(GL_TEXTURE_2D, search_tex);
|
|
||||||
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
|
||||||
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
|
|
||||||
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
|
|
||||||
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
|
|
||||||
glTexImage2D(GL_TEXTURE_2D, 0, GL_R8, (GLsizei)SEARCHTEX_WIDTH, (GLsizei)SEARCHTEX_HEIGHT, 0, GL_RED, GL_UNSIGNED_BYTE, buffer);
|
|
||||||
|
|
||||||
delete[] buffer;
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -183,10 +228,6 @@ void TMyApplication::InnerDeinit()
|
|||||||
{
|
{
|
||||||
*Console<<"APP DEINIT\n";
|
*Console<<"APP DEINIT\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
glDeleteTextures(1, &search_tex);
|
|
||||||
glDeleteTextures(1, &area_tex);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void TMyApplication::InnerOnTapDown(Vector2f p)
|
void TMyApplication::InnerOnTapDown(Vector2f p)
|
||||||
@ -218,121 +259,25 @@ void TMyApplication::InnerDraw()
|
|||||||
{
|
{
|
||||||
|
|
||||||
//Render the frame
|
//Render the frame
|
||||||
Renderer->SwitchToFrameBuffer("AlbedoBuffer");
|
Renderer->PushShader("AntialiasingShader");
|
||||||
|
|
||||||
Renderer->SetProjectionMatrix(512.f, 512.f);
|
Renderer->SetProjectionMatrix(512.f, 512.f);
|
||||||
|
|
||||||
glClearColor(0.0f, 0.0f, 0.0f, 0.0f);
|
glClearColor(1.0f, 1.0f, 1.0f, 1.0f);
|
||||||
glClear(GL_DEPTH_BUFFER_BIT | GL_COLOR_BUFFER_BIT);
|
glClear(GL_DEPTH_BUFFER_BIT | GL_COLOR_BUFFER_BIT);
|
||||||
CheckGlError("");
|
CheckGlError("");
|
||||||
|
|
||||||
|
for (auto& pair : lineRenderPairArr)
|
||||||
{
|
{
|
||||||
//Render here all objects that you want to have -- Vladislav Khorev vladislav.khorev@fishrungames.com
|
|
||||||
TRenderParamsSetter params(pair.first);
|
TRenderParamsSetter params(pair.first);
|
||||||
Renderer->DrawTriangleList(pair.second);
|
Renderer->DrawTriangleList(pair.second);
|
||||||
}
|
}
|
||||||
|
|
||||||
CheckGlError("");
|
|
||||||
|
|
||||||
|
|
||||||
//-------------------------
|
|
||||||
//First pass - edge detection
|
|
||||||
|
|
||||||
Renderer->PushShader("SmaaEdge");
|
|
||||||
|
|
||||||
|
|
||||||
Renderer->SwitchToFrameBuffer("EdgeBuffer");
|
|
||||||
Renderer->SetProjectionMatrix(512.f, 512.f);
|
|
||||||
|
|
||||||
RenderUniform1i("albedo_tex", 0);
|
|
||||||
|
|
||||||
glActiveTexture(GL_TEXTURE0);
|
|
||||||
glBindTexture(GL_TEXTURE_2D, ResourceManager->FrameManager.GetFrameTexture("AlbedoBuffer"));
|
|
||||||
|
|
||||||
|
|
||||||
Renderer->DrawTriangleList(rect.second);
|
|
||||||
|
|
||||||
Renderer->PopShader();
|
Renderer->PopShader();
|
||||||
|
|
||||||
CheckGlError("");
|
CheckGlError("");
|
||||||
|
|
||||||
|
|
||||||
//-------------------------
|
|
||||||
//Second pass - blend plus pattern matching
|
|
||||||
|
|
||||||
Renderer->PushShader("SmaaBlend");
|
|
||||||
|
|
||||||
Renderer->SwitchToFrameBuffer("BlendBuffer");
|
|
||||||
Renderer->SetProjectionMatrix(512.f, 512.f);
|
|
||||||
glClear(GL_DEPTH_BUFFER_BIT | GL_COLOR_BUFFER_BIT);
|
|
||||||
|
|
||||||
RenderUniform1i("edge_tex", 0);
|
|
||||||
RenderUniform1i("area_tex", 1);
|
|
||||||
RenderUniform1i("search_tex", 2);
|
|
||||||
|
|
||||||
glActiveTexture(GL_TEXTURE0);
|
|
||||||
glBindTexture(GL_TEXTURE_2D, ResourceManager->FrameManager.GetFrameTexture("EdgeBuffer"));
|
|
||||||
|
|
||||||
glActiveTexture(GL_TEXTURE1);
|
|
||||||
glBindTexture(GL_TEXTURE_2D, area_tex);
|
|
||||||
|
|
||||||
glActiveTexture(GL_TEXTURE2);
|
|
||||||
glBindTexture(GL_TEXTURE_2D, search_tex);
|
|
||||||
|
|
||||||
Renderer->DrawTriangleList(rect.second);
|
|
||||||
|
|
||||||
Renderer->PopShader();
|
|
||||||
|
|
||||||
CheckGlError("");
|
|
||||||
|
|
||||||
#if 1
|
|
||||||
//-------------------------
|
|
||||||
//Last pass - neightborhood
|
|
||||||
|
|
||||||
Renderer->PushShader("SmaaNeighborhood");
|
|
||||||
|
|
||||||
Renderer->SwitchToScreen();
|
|
||||||
Renderer->SetFullScreenViewport();
|
|
||||||
Renderer->SetProjectionMatrix(512.f, 512.f);
|
|
||||||
glClear(GL_DEPTH_BUFFER_BIT | GL_COLOR_BUFFER_BIT);
|
|
||||||
|
|
||||||
RenderUniform1i("albedo_tex", 0);
|
|
||||||
RenderUniform1i("blend_tex", 1);
|
|
||||||
|
|
||||||
glActiveTexture(GL_TEXTURE1);
|
|
||||||
glBindTexture(GL_TEXTURE_2D, ResourceManager->FrameManager.GetFrameTexture("BlendBuffer"));
|
|
||||||
|
|
||||||
glActiveTexture(GL_TEXTURE0);
|
|
||||||
glBindTexture(GL_TEXTURE_2D, ResourceManager->FrameManager.GetFrameTexture("AlbedoBuffer"));
|
|
||||||
Renderer->DrawTriangleList(rect.second);
|
|
||||||
|
|
||||||
Renderer->PopShader();
|
|
||||||
|
|
||||||
CheckGlError("");
|
|
||||||
#else
|
|
||||||
|
|
||||||
|
|
||||||
//... or just render intermediate buffers to see what is going on
|
|
||||||
Renderer->PushShader("DefaultShader");
|
|
||||||
Renderer->SwitchToScreen();
|
|
||||||
Renderer->SetFullScreenViewport();
|
|
||||||
Renderer->SetProjectionMatrix(512.f, 512.f);
|
|
||||||
|
|
||||||
|
|
||||||
glActiveTexture(GL_TEXTURE0);
|
|
||||||
|
|
||||||
//Choose any to render for debug:
|
|
||||||
//glBindTexture(GL_TEXTURE_2D, ResourceManager->FrameManager.GetFrameTexture("AlbedoBuffer"));
|
|
||||||
//glBindTexture(GL_TEXTURE_2D, ResourceManager->FrameManager.GetFrameTexture("EdgeBuffer"));
|
|
||||||
glBindTexture(GL_TEXTURE_2D, ResourceManager->FrameManager.GetFrameTexture("BlendBuffer"));
|
|
||||||
|
|
||||||
Renderer->DrawTriangleList(rect.second);
|
|
||||||
|
|
||||||
Renderer->PopShader();
|
|
||||||
|
|
||||||
CheckGlError("");
|
|
||||||
#endif
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -33,8 +33,7 @@ protected:
|
|||||||
bool Inited;
|
bool Inited;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
TRenderPair pair;
|
std::vector<TRenderPair> lineRenderPairArr;
|
||||||
TRenderPair rect;
|
|
||||||
|
|
||||||
bool Loaded;
|
bool Loaded;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user