diff options
| author | Roy <Roy.mail.net@gmail.com> | 2022-12-12 12:56:50 +0200 |
|---|---|---|
| committer | Roy <Roy.mail.net@gmail.com> | 2022-12-12 12:56:50 +0200 |
| commit | dd96ebe466a3dbef253d8568910faf199b689b21 (patch) | |
| tree | 0b5dfdbefcc3ac147785e7f83aa03e832a0ff66c /Software/PMR | |
| parent | 218046025d4c38af2e94cbb099c9d50969e98a18 (diff) | |
| download | Tango-dd96ebe466a3dbef253d8568910faf199b689b21.tar.gz Tango-dd96ebe466a3dbef253d8568910faf199b689b21.zip | |
Fixed collision of ConversionType.
Diffstat (limited to 'Software/PMR')
| -rw-r--r-- | Software/PMR/Messages/ColorLab/ConversionInput.proto | 3 | ||||
| -rw-r--r-- | Software/PMR/Messages/ColorLab/ConversionType.proto | 10 | ||||
| -rw-r--r-- | Software/PMR/Messages/ColorLab/OutOfGamutInput.proto | 2 |
3 files changed, 14 insertions, 1 deletions
diff --git a/Software/PMR/Messages/ColorLab/ConversionInput.proto b/Software/PMR/Messages/ColorLab/ConversionInput.proto index a64870f52..601a231a5 100644 --- a/Software/PMR/Messages/ColorLab/ConversionInput.proto +++ b/Software/PMR/Messages/ColorLab/ConversionInput.proto @@ -6,6 +6,7 @@ option java_package = "com.twine.tango.pmr.colorlab"; import "InputCoordinates.proto"; import "ColorSpace.proto"; import "ProcessRange.proto"; +import "ConversionType.proto"; message ConversionInput { @@ -26,5 +27,5 @@ message ConversionInput bytes GbdData = 15; bytes LubData = 16; bool UseLubricantTransform = 17; - bool ForFineTuning = 18; + ConversionType ConversionType = 18; }
\ No newline at end of file diff --git a/Software/PMR/Messages/ColorLab/ConversionType.proto b/Software/PMR/Messages/ColorLab/ConversionType.proto new file mode 100644 index 000000000..ad04b7b70 --- /dev/null +++ b/Software/PMR/Messages/ColorLab/ConversionType.proto @@ -0,0 +1,10 @@ +syntax = "proto3"; + +package Tango.PMR.ColorLab; +option java_package = "com.twine.tango.pmr.colorlab"; + +enum ConversionType +{ + Default = 0; + FineTuning = 1; +} diff --git a/Software/PMR/Messages/ColorLab/OutOfGamutInput.proto b/Software/PMR/Messages/ColorLab/OutOfGamutInput.proto index 1b361a180..1d242c8b7 100644 --- a/Software/PMR/Messages/ColorLab/OutOfGamutInput.proto +++ b/Software/PMR/Messages/ColorLab/OutOfGamutInput.proto @@ -6,6 +6,7 @@ option java_package = "com.twine.tango.pmr.colorlab"; import "InputCoordinates.proto"; import "ColorSpace.proto"; import "ProcessRange.proto"; +import "ConversionType.proto"; message OutOfGamutInput { @@ -19,4 +20,5 @@ message OutOfGamutInput bytes GbdData = 8; bytes LubData = 9; bool UseLubricantTransform = 10; + ConversionType ConversionType = 11; }
\ No newline at end of file |
