Lines Matching refs:endl

37     cout << "lutgen -d SIZE -s SOURCE -t TARGET <lut file>" << endl;
38 cout << endl;
39 cout << "Generate a 3D LUT to convert between two color spaces." << endl;
40 cout << endl;
41 cout << "If <lut file> ends in .inc, data is generated without the array declaration." << endl;
42 cout << endl;
43 cout << "Options:" << endl;
44 cout << " --help, -h" << endl;
45 cout << " print this message" << endl;
46 cout << " --dimension=, -d" << endl;
47 cout << " the dimension of the 3D LUT. Example: 17 for a 17x17x17 LUT. 32 by default" << endl;
48 cout << " --source=COLORSPACE, -s" << endl;
49 cout << " the source color space, see below for available names. DisplayP3 by default" << endl;
50 cout << " --target=COLORSPACE, -t" << endl;
51 cout << " the target color space, see below for available names. extendedSRGB by default" << endl;
52 cout << endl;
53 cout << "Colorspace names:" << endl;
54 cout << " sRGB" << endl;
55 cout << " linearSRGB" << endl;
56 cout << " extendedSRGB" << endl;
57 cout << " linearExtendedSRGB" << endl;
58 cout << " NTSC" << endl;
59 cout << " BT709" << endl;
60 cout << " BT2020" << endl;
61 cout << " AdobeRGB" << endl;
62 cout << " ProPhotoRGB" << endl;
63 cout << " DisplayP3" << endl;
64 cout << " DCIP3" << endl;
65 cout << " ACES" << endl;
66 cout << " ACEScg" << endl;
147 outputStream << "// generated with lutgen " << filename.c_str() << endl;
148 outputStream << "// 3D LUT stored as an RGB16F texture, in GL order" << endl;
149 outputStream << "// Size is " << gSize << "x" << gSize << "x" << gSize << endl;
158 outputStream << "const size_t LUT_" << src << "_TO_" << dst << "_SIZE = " << gSize << endl;
161 outputStream << "// From " << src << " to " << dst << endl;
167 if (x % 4 == 0) outputStream << endl << " ";
183 outputStream << endl << "}; // end LUT" << endl;
186 outputStream << endl;
190 cerr << "Could not write to file: " << filename << endl;