diff options
author | M. Stoeckl <manuel.stoeckl93@gmail.com> | 2019-02-03 16:45:09 +0000 |
---|---|---|
committer | Christian Duerr <chrisduerr@users.noreply.github.com> | 2019-02-03 16:45:09 +0000 |
commit | 3f0d11381dd72f9ed3db040210293a2f7fa74ea3 (patch) | |
tree | e3347d4e1bb266550979dc0cc03890d1ab83cde7 /res/rect.f.glsl | |
parent | 20f319860908c2fa86bba25bb1e7bf8ba1a464e1 (diff) | |
download | alacritty-3f0d11381dd72f9ed3db040210293a2f7fa74ea3.tar.gz alacritty-3f0d11381dd72f9ed3db040210293a2f7fa74ea3.zip |
Remove unused coordinate from rect shader
Diffstat (limited to 'res/rect.f.glsl')
-rw-r--r-- | res/rect.f.glsl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/res/rect.f.glsl b/res/rect.f.glsl index 907ee858..12e40469 100644 --- a/res/rect.f.glsl +++ b/res/rect.f.glsl @@ -12,7 +12,8 @@ // See the License for the specific language governing permissions and // limitations under the License. #version 330 core -in vec4 color; + +uniform vec4 color; out vec4 FragColor; |