Compare commits

..

3 Commits

Author SHA1 Message Date
Dean Herbert
3c1262ae00 Add appveyor deploy script 2019-07-31 16:32:30 +09:00
Dean Herbert
99473d3670 Merge pull request #67 from smoogipoo/more-precision-qualifiers
Fix GL_ES errors due to missing precision identifiers
2019-07-31 16:25:47 +09:00
smoogipoo
568d36cb72 Fix GL_ES errors due to missing precision identifiers 2019-07-31 16:20:01 +09:00
2 changed files with 19 additions and 2 deletions

17
appveyor_deploy.yml Normal file
View File

@@ -0,0 +1,17 @@
clone_depth: 1
version: '{build}'
skip_non_tags: true
image: Visual Studio 2017
configuration: Release
platform: Any CPU
before_build:
- ps: if($env:appveyor_repo_tag -eq 'True') { Update-AppveyorBuild -Version $env:appveyor_repo_tag_name }
build_script:
- cmd: dotnet pack osu.Game.Resources /p:Version=%APPVEYOR_BUILD_VERSION%
artifacts:
- path: osu.Game.Resources/bin/Any CPU/Release/**/*.nupkg
deploy:
- provider: Environment
name: nuget
- provider: Environment
name: github

View File

@@ -6,9 +6,9 @@ uniform highp vec2 flashlightSize;
uniform lowp float flashlightDim;
const float smoothness = 1.1;
const mediump float smoothness = 1.1;
lowp vec4 getColourAt(vec2, vec2, vec4);
lowp vec4 getColourAt(highp vec2, highp vec2, lowp vec4);
void main(void)
{