Skip to content

Commit 0baaf74

Browse files
authored
Remove pp submodule (#1770)
* Remove postprocessing submodule and use shipped package dependency.
1 parent f9a068d commit 0baaf74

File tree

10 files changed

+6
-16
lines changed

10 files changed

+6
-16
lines changed

.gitmodules

-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +0,0 @@
1-
[submodule "com.unity.postprocessing"]
2-
path = com.unity.postprocessing
3-
url = https://github.com/Unity-Technologies/PostProcessing.git
4-
branch = v2

TestProjects/HDRP_Tests/Packages/manifest.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"dependencies": {
3-
"com.unity.postprocessing": "file:../../../com.unity.postprocessing",
43
"com.unity.render-pipelines.core": "file:../../../com.unity.render-pipelines.core",
54
"com.unity.render-pipelines.high-definition": "file:../../../com.unity.render-pipelines.high-definition",
65
"com.unity.shadergraph": "file:../../../com.unity.shadergraph",

TestProjects/LWGraphicsTest/Packages/manifest.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"dependencies": {
3-
"com.unity.postprocessing": "file:../../../com.unity.postprocessing",
43
"com.unity.render-pipelines.core": "file:../../../com.unity.render-pipelines.core",
54
"com.unity.render-pipelines.lightweight": "file:../../../com.unity.render-pipelines.lightweight",
65
"com.unity.shadergraph": "file:../../../com.unity.shadergraph",

TestProjects/PostProcessing/Packages/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"dependencies": {
3-
"com.unity.postprocessing": "file:../../../com.unity.postprocessing",
3+
"com.unity.postprocessing": "2.0.9-preview",
44
"com.unity.testframework.graphics": "file:../../../com.unity.testframework.graphics",
55
"com.unity.textmeshpro": "1.2.4"
66
},

TestProjects/ShaderGraph/Packages/manifest.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"dependencies": {
3-
"com.unity.postprocessing": "file:../../../com.unity.postprocessing",
43
"com.unity.render-pipelines.core": "file:../../../com.unity.render-pipelines.core",
54
"com.unity.render-pipelines.high-definition": "file:../../../com.unity.render-pipelines.high-definition",
65
"com.unity.render-pipelines.lightweight": "file:../../../com.unity.render-pipelines.lightweight",

build.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,15 @@ def packages_list():
88
("com.unity.render-pipelines.lightweight", os.path.join("com.unity.render-pipelines.lightweight")),
99
("com.unity.render-pipelines.high-definition", os.path.join("com.unity.render-pipelines.high-definition")),
1010
("com.unity.shadergraph", os.path.join("com.unity.shadergraph")),
11-
("com.unity.postprocessing", os.path.join("com.unity.postprocessing")),
12-
("com.unity.testframework.graphics", os.path.join("com.unity.testframework.graphics")),
11+
("com.unity.testframework.graphics", os.path.join("com.unity.testframework.graphics"))
1312
]
1413

1514
def test_packages_list():
1615
return [
1716
"com.unity.render-pipelines.core",
1817
"com.unity.render-pipelines.lightweight",
1918
"com.unity.render-pipelines.high-definition",
20-
"com.unity.shadergraph",
21-
"com.unity.postprocessing"
19+
"com.unity.shadergraph"
2220
]
2321

2422
if __name__ == "__main__":

com.unity.postprocessing

-1
This file was deleted.

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"unity": "2018.2",
66
"displayName": "HD Render Pipeline",
77
"dependencies": {
8-
"com.unity.postprocessing": "2.0.10-preview",
8+
"com.unity.postprocessing": "2.0.9-preview",
99
"com.unity.render-pipelines.core": "3.0.1-preview",
1010
"com.unity.shadergraph": "3.0.1-preview"
1111
}

com.unity.render-pipelines.lightweight/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"unity": "2018.2",
66
"displayName": "Lightweight Render Pipeline",
77
"dependencies": {
8-
"com.unity.postprocessing": "2.0.10-preview",
8+
"com.unity.postprocessing": "2.0.9-preview",
99
"com.unity.render-pipelines.core": "3.0.1-preview",
1010
"com.unity.shadergraph": "3.0.1-preview"
1111
}

com.unity.testframework.graphics/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "com.unity.testframework.graphics",
33
"displayName":"Graphics Tests Framework",
4-
"version": "0.1.1-preview",
4+
"version": "3.0.1-preview",
55
"unity": "2018.2",
66
"description": "Provides test framework helpers for writing tests for graphics code, such as image comparison assertions and automatic management of reference images.",
77
"keywords": ["qa", "test", "testing", "tests", "graphics"],

0 commit comments

Comments
 (0)