Skip to content

Updated nuke-default config to match upcoming colorspace additions in Nuke build #6

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

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
73 changes: 61 additions & 12 deletions nuke-default/config.ocio
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ displays:
- !<View> {name: None, colorspace: raw}
- !<View> {name: sRGB, colorspace: sRGB}
- !<View> {name: rec709, colorspace: rec709}
- !<View> {name: rec1886, colorspace: Gamma2.4}

active_displays: [default]
active_views: [sRGB]
Expand Down Expand Up @@ -48,18 +49,6 @@ colorspaces:
allocationvars: [-0.125, 1.125]
to_reference: !<FileTransform> {src: srgb.spi1d, interpolation: linear}

- !<ColorSpace>
name: sRGBf
family: ""
equalitygroup: ""
bitdepth: 32f
description: |
Standard RGB Display Space, but with additional range to preserve float highlights.
isdata: false
allocation: uniform
allocationvars: [-0.125, 4.875]
to_reference: !<FileTransform> {src: srgbf.spi1d, interpolation: linear}

- !<ColorSpace>
name: rec709
family: ""
Expand Down Expand Up @@ -108,6 +97,18 @@ colorspaces:
allocationvars: [0, 1]
to_reference: !<ExponentTransform> {value: [2.2, 2.2, 2.2, 1]}

- !<ColorSpace>
name: Gamma2.4
family: ""
equalitygroup: ""
bitdepth: 32f
description: |
Emulates a idealized Gamma 2.4 display device.
isdata: false
allocation: uniform
allocationvars: [0, 1]
to_reference: !<ExponentTransform> {value: [2.4, 2.4, 2.4, 1]}

- !<ColorSpace>
name: Panalog
family: ""
Expand Down Expand Up @@ -180,6 +181,54 @@ colorspaces:
allocationvars: [-0.125, 1.125]
to_reference: !<FileTransform> {src: slog.spi1d, interpolation: linear}

- !<ColorSpace>
name: SLog1
family: ""
equalitygroup: ""
bitdepth: 32f
description: |
Sony SLog1
isdata: false
allocation: uniform
allocationvars: [-0.125, 1.125]
to_reference: !<FileTransform> {src: slog1.spi1d, interpolation: linear}

- !<ColorSpace>
name: SLog2
family: ""
equalitygroup: ""
bitdepth: 32f
description: |
Sony SLog2
isdata: false
allocation: uniform
allocationvars: [-0.125, 1.125]
to_reference: !<FileTransform> {src: slog2.spi1d, interpolation: linear}

- !<ColorSpace>
name: SLog3
family: ""
equalitygroup: ""
bitdepth: 32f
description: |
Sony SLog3
isdata: false
allocation: uniform
allocationvars: [-0.125, 1.125]
to_reference: !<FileTransform> {src: slog3.spi1d, interpolation: linear}

- !<ColorSpace>
name: CLog
family: ""
equalitygroup: ""
bitdepth: 32f
description: |
Canon CLog
isdata: false
allocation: uniform
allocationvars: [-0.125, 1.125]
to_reference: !<FileTransform> {src: clog.spi1d, interpolation: linear}

- !<ColorSpace>
name: raw
family: ""
Expand Down
Loading