Skip to content

Universal/fix gles30 shadergraph #108

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions com.unity.render-pipelines.universal/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Fixed shader compilation errors when using multiple lights in DX10 level GPU. [case 1222302](https://issuetracker.unity3d.com/issues/urp-no-materials-apart-from-ui-are-rendered-when-using-direct3d11-graphics-api-on-a-dx10-gpu)
- Fixed an issue with shadows not being correctly calculated in some shaders.
- Fixed invalid implementation of one function in LWRP -> URP backward compatibility support.
- Fixed OpenGL ES 3.0 support for URP ShaderGraph. [case 1230890](https://issuetracker.unity3d.com/issues/urptemplate-gles3-android-custom-shader-fails-to-compile-on-adreno-306-gpu)

## [7.1.1] - 2019-09-05
### Upgrade Guide
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ static class CorePragmas
public static readonly PragmaCollection Default = new PragmaCollection
{
{ Pragma.Target(ShaderModel.Target20) },
{ Pragma.OnlyRenderers(new[]{ Platform.GLES }) },
{ Pragma.OnlyRenderers(new[]{ Platform.GLES, Platform.GLES3 }) },
{ Pragma.PreferHlslCC(new[]{ Platform.GLES }) },
{ Pragma.Vertex("vert") },
{ Pragma.Fragment("frag") },
Expand All @@ -235,7 +235,7 @@ static class CorePragmas
public static readonly PragmaCollection Instanced = new PragmaCollection
{
{ Pragma.Target(ShaderModel.Target20) },
{ Pragma.OnlyRenderers(new[]{ Platform.GLES }) },
{ Pragma.OnlyRenderers(new[]{ Platform.GLES, Platform.GLES3 }) },
{ Pragma.MultiCompileInstancing },
{ Pragma.PreferHlslCC(new[]{ Platform.GLES }) },
{ Pragma.Vertex("vert") },
Expand All @@ -245,7 +245,7 @@ static class CorePragmas
public static readonly PragmaCollection Forward = new PragmaCollection
{
{ Pragma.Target(ShaderModel.Target20) },
{ Pragma.OnlyRenderers(new[]{ Platform.GLES }) },
{ Pragma.OnlyRenderers(new[]{ Platform.GLES, Platform.GLES3 }) },
{ Pragma.MultiCompileInstancing },
{ Pragma.MultiCompileFog },
{ Pragma.PreferHlslCC(new[]{ Platform.GLES }) },
Expand Down