Skip to content

Commit

Permalink
AB support for Inter graphics card
Browse files Browse the repository at this point in the history
LOL!
  • Loading branch information
kmkolasinski committed Apr 8, 2015
1 parent ccbb332 commit f7c2d43
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Sources/resources/filters.frag
Expand Up @@ -57,11 +57,11 @@ uniform vec2 corner2;
uniform vec2 corner3;
uniform vec2 corner4;

const mat3 sobel_kernel = mat3(
-1.0, 0.0, +1.0,
-2.0, 0.0, +2.0,
-1.0, 0.0, +1.0
);
mat3 sobel_kernel = mat3(
-1.0, 0.0, +1.0,
-2.0, 0.0, +2.0,
-1.0, 0.0, +1.0
);

// ----------------------------------------------------------------
//
Expand Down

0 comments on commit f7c2d43

Please sign in to comment.