Import exr 1.6.3 upstream upstream/1.6.3
authorDongHun Kwak <dh0128.kwak@samsung.com>
Thu, 6 Apr 2023 00:10:32 +0000 (09:10 +0900)
committerDongHun Kwak <dh0128.kwak@samsung.com>
Thu, 6 Apr 2023 00:10:32 +0000 (09:10 +0900)
commit65f640615cbec09e99de5ee5d7f09668f799b21a
tree4970264b0e8a36b133fcdafe7eb088b2caf637b2
Import exr 1.6.3
81 files changed:
.cargo_vcs_info.json [new file with mode: 0644]
.github/ISSUE_TEMPLATE/bug_report.md [new file with mode: 0644]
.github/ISSUE_TEMPLATE/feature_request.md [new file with mode: 0644]
.github/ISSUE_TEMPLATE/other.md [new file with mode: 0644]
.github/ISSUE_TEMPLATE/question.md [new file with mode: 0644]
.github/workflows/rust.yml [new file with mode: 0644]
.gitignore [new file with mode: 0644]
CONTRIBUTORS.md [new file with mode: 0644]
Cargo.lock [new file with mode: 0644]
Cargo.toml [new file with mode: 0644]
Cargo.toml.orig [new file with mode: 0644]
GUIDE.md [new file with mode: 0644]
LICENSE.md [new file with mode: 0644]
README.md [new file with mode: 0644]
benches/pixel_format_conversion.rs [new file with mode: 0644]
benches/profiling.rs [new file with mode: 0644]
benches/read.rs [new file with mode: 0644]
benches/write.rs [new file with mode: 0644]
examples/0a_write_rgba.rs [new file with mode: 0644]
examples/0b_read_meta.rs [new file with mode: 0644]
examples/0c_read_rgba.rs [new file with mode: 0644]
examples/1a_write_rgba_with_metadata.rs [new file with mode: 0644]
examples/1b_convert_exr_to_png.rs [new file with mode: 0644]
examples/2_rgba_adjust_exposure.rs [new file with mode: 0644]
examples/3a_write_dynamic_channels_with_metadata.rs [new file with mode: 0644]
examples/3b_read_all_channels_with_metadata.rs [new file with mode: 0644]
examples/4a_write_custom_fixed_channels.rs [new file with mode: 0644]
examples/4b_read_custom_fixed_channels.rs [new file with mode: 0644]
examples/5a_write_multiple_layers.rs [new file with mode: 0644]
examples/5b_extract_exr_layers_as_pngs.rs [new file with mode: 0644]
examples/5c_write_mip_maps.rs [new file with mode: 0644]
examples/5d_write_legacy_layers.rs [new file with mode: 0644]
examples/6_extract_mip_map_pngs.rs [new file with mode: 0644]
examples/7_crop_alpha_any_image.rs [new file with mode: 0644]
examples/7_crop_alpha_rgba.rs [new file with mode: 0644]
examples/7_write_raw_blocks.rs [new file with mode: 0644]
examples/8_read_raw_blocks.rs [new file with mode: 0644]
examples/README.md [new file with mode: 0644]
releasing.md [new file with mode: 0644]
src/block/chunk.rs [new file with mode: 0644]
src/block/lines.rs [new file with mode: 0644]
src/block/mod.rs [new file with mode: 0644]
src/block/reader.rs [new file with mode: 0644]
src/block/samples.rs [new file with mode: 0644]
src/block/writer.rs [new file with mode: 0644]
src/compression/b44/mod.rs [new file with mode: 0644]
src/compression/b44/table.rs [new file with mode: 0644]
src/compression/mod.rs [new file with mode: 0644]
src/compression/piz/huffman.rs [new file with mode: 0644]
src/compression/piz/mod.rs [new file with mode: 0644]
src/compression/piz/wavelet.rs [new file with mode: 0644]
src/compression/pxr24.rs [new file with mode: 0644]
src/compression/rle.rs [new file with mode: 0644]
src/compression/zip.rs [new file with mode: 0644]
src/error.rs [new file with mode: 0644]
src/image/channel_groups.rs [new file with mode: 0644]
src/image/crop.rs [new file with mode: 0644]
src/image/mod.rs [new file with mode: 0644]
src/image/pixel_vec.rs [new file with mode: 0644]
src/image/read/any_channels.rs [new file with mode: 0644]
src/image/read/image.rs [new file with mode: 0644]
src/image/read/layers.rs [new file with mode: 0644]
src/image/read/levels.rs [new file with mode: 0644]
src/image/read/mod.rs [new file with mode: 0644]
src/image/read/samples.rs [new file with mode: 0644]
src/image/read/specific_channels.rs [new file with mode: 0644]
src/image/recursive.rs [new file with mode: 0644]
src/image/write/channels.rs [new file with mode: 0644]
src/image/write/layers.rs [new file with mode: 0644]
src/image/write/mod.rs [new file with mode: 0644]
src/image/write/samples.rs [new file with mode: 0644]
src/io.rs [new file with mode: 0644]
src/lib.rs [new file with mode: 0644]
src/math.rs [new file with mode: 0644]
src/meta/attribute.rs [new file with mode: 0644]
src/meta/header.rs [new file with mode: 0644]
src/meta/mod.rs [new file with mode: 0644]
tests/across_compression.rs [new file with mode: 0644]
tests/dev.rs [new file with mode: 0644]
tests/fuzz.rs [new file with mode: 0644]
tests/roundtrip.rs [new file with mode: 0644]