diff options
author | Christian Duerr <contact@christianduerr.com> | 2020-08-01 01:11:24 +0000 |
---|---|---|
committer | Christian Duerr <contact@christianduerr.com> | 2020-08-01 03:10:59 +0200 |
commit | 55a185d00f51f9003e0e4681acb1ef1ae9ab35f4 (patch) | |
tree | a6f8a7a0d08921f6c18f870b281a948346fc411e /res/rect.f.glsl | |
parent | a46bb5a6e89018ab7d648c5434a4036808922b27 (diff) | |
download | alacritty-55a185d00f51f9003e0e4681acb1ef1ae9ab35f4.tar.gz alacritty-55a185d00f51f9003e0e4681acb1ef1ae9ab35f4.zip |
Fix crates.io publishing restrictions
This works around the problem that crates pushed to crates.io cannot
reference files outside of their crate directory.
Diffstat (limited to 'res/rect.f.glsl')
-rw-r--r-- | res/rect.f.glsl | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/res/rect.f.glsl b/res/rect.f.glsl deleted file mode 100644 index 12e40469..00000000 --- a/res/rect.f.glsl +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright 2016 Joe Wilm, The Alacritty Project Contributors -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -#version 330 core - -uniform vec4 color; - -out vec4 FragColor; - -void main() -{ - FragColor = color; -} |