mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-07 07:02:46 +02:00
Add comments to srgb_gen.py
This commit is contained in:
parent
28b3ff9bca
commit
d40b783ce2
1 changed files with 12 additions and 0 deletions
|
@ -1,3 +1,15 @@
|
|||
#
|
||||
# srgb_gen.py
|
||||
# tools/
|
||||
#
|
||||
# Created by Ryan Huffman on 8/8/2016.
|
||||
# Copyright 2016 High Fidelity, Inc.
|
||||
#
|
||||
# Distributed under the Apache License, Version 2.0.
|
||||
# See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||
|
||||
# Generates a lookup table for SRGB to Linear color transformations
|
||||
|
||||
NUM_VALUES = 256
|
||||
srgb_to_linear = []
|
||||
|
||||
|
|
Loading…
Reference in a new issue