Skip to content

Commit b107b46

Browse files
PaulDemeulenaereEvergreen
authored andcommitted
[SRP] Upgrade Burst
Update Burst Package to retrieve this specific fix 🔽 ![image](https://media.github.cds.internal.unity3d.com/user/42/files/8583fc0b-14db-49d7-875c-06c71d90be35) - 🎁 Upgrade mathematic package & remove reference from srp package (this is already a dependency in core package) - 🧹 Clean up duplicated dependencies in HDRP - 📦 Move burst dependency to srp core (since this [PR](https://github.cds.internal.unity3d.com/unity/unity/pull/35168), collection is included in core, thus, it brings burst)
1 parent f127e3f commit b107b46

File tree

4 files changed

+5
-15
lines changed

4 files changed

+5
-15
lines changed

Packages/com.unity.render-pipelines.core/package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@
55
"unity": "6000.0",
66
"displayName": "Core RP Library",
77
"dependencies": {
8-
"com.unity.mathematics": "1.2.6",
8+
"com.unity.burst": "1.8.14",
9+
"com.unity.mathematics": "1.3.2",
910
"com.unity.ugui": "2.0.0",
10-
"com.unity.collections": "2.2.0",
11+
"com.unity.collections": "2.4.1",
1112
"com.unity.modules.physics": "1.0.0",
1213
"com.unity.modules.terrain": "1.0.0",
1314
"com.unity.modules.jsonserialize": "1.0.0",
1415
"com.unity.rendering.light-transport": "1.0.0"
1516
}
16-
}
17+
}

Packages/com.unity.render-pipelines.high-definition/package.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,9 @@
55
"unity": "6000.0",
66
"displayName": "High Definition RP",
77
"dependencies": {
8-
"com.unity.mathematics": "1.2.4",
9-
"com.unity.collections": "2.2.0",
10-
"com.unity.burst": "1.8.9",
118
"com.unity.modules.video": "1.0.0",
129
"com.unity.modules.animation": "1.0.0",
1310
"com.unity.modules.imageconversion": "1.0.0",
14-
"com.unity.modules.terrain": "1.0.0",
1511
"com.unity.render-pipelines.core": "17.0.3",
1612
"com.unity.shadergraph": "17.0.3",
1713
"com.unity.visualeffectgraph": "17.0.3",

Packages/com.unity.render-pipelines.universal/package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
"unity": "6000.0",
66
"displayName": "Universal RP",
77
"dependencies": {
8-
"com.unity.mathematics": "1.2.1",
9-
"com.unity.burst": "1.8.9",
108
"com.unity.render-pipelines.core": "17.0.3",
119
"com.unity.shadergraph": "17.0.3",
1210
"com.unity.render-pipelines.universal-config": "17.0.3"

Tests/SRPTests/Packages/com.unity.testing.visualeffectgraph/Tests/Editor/VFXAdditionalPackageTest.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,7 @@ namespace UnityEditor.VFX.Test
1414
[TestFixture]
1515
public class VFXAdditionalPackageTest
1616
{
17-
public static string[] kAdditionalSampleMatches = new [] {"Additions", "Helpers"
18-
//See UUM-66783
19-
#if !VFX_TESTS_HAS_HDRP
20-
, "Learning"
21-
#endif
22-
};
17+
public static string[] kAdditionalSampleMatches = new [] {"Additions", "Helpers", "Learning"};
2318

2419
private static readonly string kSampleExpectedPath = "Assets/Samples";
2520

0 commit comments

Comments
 (0)