Update display settings 2017 12 6 authored by Ali Can Demiralp's avatar Ali Can Demiralp
...@@ -25,7 +25,10 @@ Consider 4 types of configurations that cascade upon each other, similar to CSS. ...@@ -25,7 +25,10 @@ Consider 4 types of configurations that cascade upon each other, similar to CSS.
- Example use case: I really know what I'm doing and I want to test the PLI viewer with an HMD. - Example use case: I really know what I'm doing and I want to test the PLI viewer with an HMD.
Cascading: Cascading:
- Phoenix Library Settings : {a: 1, b: 2, c: 3}
- Machine Specific Settings : {a: 42} -> {a: 42, b: 2 , c: 3} | Setting Type | Effect | Cascaded Result |
- Application Specific Settings: {b: 63} -> {a: 42, b: 63, c: 3} | ------------- | ------------------ | --------------------- |
- User Specific Settings : {a: 84, c: 21} -> {a: 84, b: 63, c: 21} | Library | {a: 1, b: 2, c: 3} | {a: 1, b: 2, c: 3} |
\ No newline at end of file | Machine | {a: 42} | {a: 42, b: 2 , c: 3} |
| Application | {b: 63} | {a: 42, b: 63, c: 3} |
| User | {a: 84, c: 21} | {a: 84, b: 63, c: 21} |
\ No newline at end of file