├── .gitignore ├── Makefile ├── README.adoc ├── astc.txt ├── bptc.txt ├── colormodels.txt ├── compformats.txt ├── compintro.txt ├── config ├── df-xhtml.css ├── docbook-xsl │ ├── chunked.xsl │ ├── common.xsl │ ├── pdf.xsl │ └── xhtml.xsl ├── mathjax-asciidoc.conf ├── mathjax-docbook.conf └── mathjax.js ├── conversionintro.txt ├── conversions.txt ├── dblatex ├── df.sty ├── df_headfoot.sty └── df_title.sty ├── df-docinfo.xml ├── df.txt ├── etc1.txt ├── etc2.txt ├── headers └── khr_df.h ├── images ├── 1DByteOffset.pdf ├── 1DByteOffset.svg ├── 1DRGBOffset.pdf ├── 1DRGBOffset.svg ├── 1DWordOffset.pdf ├── 1DWordOffset.svg ├── 1DYCbCr_CbCr.pdf ├── 1DYCbCr_CbCr.svg ├── 1DYCbCr_Y.pdf ├── 1DYCbCr_Y.svg ├── 1DYCbCr_cosited.pdf ├── 1DYCbCr_cosited.svg ├── 1DYCbCr_midpoint.pdf ├── 1DYCbCr_midpoint.svg ├── 2DHilbertOffsets.pdf ├── 2DHilbertOffsets.svg ├── 2DLinearOffsets.pdf ├── 2DLinearOffsets.svg ├── 2DMortonOffsets.pdf ├── 2DMortonOffsets.svg ├── 2DRGBOffsets.pdf ├── 2DRGBOffsets.svg ├── 2DRGBplanes.pdf ├── 2DRGBplanes.svg ├── 2DTile4x4.pdf ├── 2DTile4x4.svg ├── 2DYCbCr420_KDFS.pdf ├── 2DYCbCr420_KDFS.svg ├── 2DYCbCr420_traditional.pdf ├── 2DYCbCr420_traditional.svg ├── 2DYCbCrKDFSEncoding.pdf ├── 2DYCbCrKDFSEncoding.svg ├── 565pixels.pdf ├── 565pixels.svg ├── Bayer.pdf ├── Bayer.svg ├── Bayer18x12.pdf ├── Bayer18x12.svg ├── ETC1Diff.pdf ├── ETC1Diff.svg ├── ETC1Ind.pdf ├── ETC1Ind.svg ├── ETC2H.pdf ├── ETC2H.svg ├── ETC2P.pdf ├── ETC2P.svg ├── ETC2T.pdf ├── ETC2T.svg ├── ETC2x4.pdf ├── ETC2x4.svg ├── ETC4x2.pdf ├── ETC4x2.svg ├── ETCletter8x8.pdf ├── ETCletter8x8.svg ├── ETCletterdirections.pdf ├── ETCletterdirections.svg ├── Khronos_RGB_June18.pdf ├── Khronos_RGB_June18.svg ├── Morton.pdf ├── Morton.svg ├── PVRTC1_image_reconstruction_simple.pdf ├── PVRTC1_image_reconstruction_simple.svg ├── PVRTC1_image_reconstruction_wrap.pdf ├── PVRTC1_image_reconstruction_wrap.svg ├── PVRTC2_hard_transition.pdf ├── PVRTC2_hard_transition.svg ├── RGB565BEKDFSEncoding.pdf ├── RGB565BEKDFSEncoding.svg ├── X-Trans18x12.pdf ├── X-Trans18x12.svg ├── all_glory_to_the_hypnotoad_24.pdf ├── all_glory_to_the_hypnotoad_24.svg ├── all_glory_to_the_hypnotoad_24_cosited.pdf ├── all_glory_to_the_hypnotoad_24_cosited.svg ├── all_glory_to_the_hypnotoad_30.pdf ├── all_glory_to_the_hypnotoad_30.svg ├── all_glory_to_the_hypnotoad_30_cosited.pdf ├── all_glory_to_the_hypnotoad_30_cosited.svg ├── bc1.pdf ├── bc1.svg ├── bc1a.pdf ├── bc1a.svg ├── cb16all.pdf ├── cb16all.svg ├── cb16all_cosited.pdf ├── cb16all_cosited.svg ├── cb21all.pdf ├── cb21all.svg ├── cb21all_cosited.pdf ├── cb21all_cosited.svg ├── colorconversion_accurate.pdf ├── colorconversion_accurate.svg ├── colorconversion_approximate.pdf ├── colorconversion_approximate.svg ├── icons │ └── note.png ├── tf_colorshift_intensitylinearvalues.png ├── tf_colorshift_srgblinearvalues.png ├── tf_curves.pdf ├── tf_curves.svg ├── tf_hlg.pdf ├── tf_hlg.svg ├── tf_hlgeotfoetf.pdf ├── tf_hlgeotfoetf.svg ├── tf_ituvsgamma256.pdf ├── tf_ituvsgamma256.svg ├── tf_ituvsgamma2_0.pdf ├── tf_ituvsgamma2_0.svg ├── tf_ituvsgamma2_2.pdf ├── tf_ituvsgamma2_2.svg ├── tf_ituvssrgb256.pdf ├── tf_ituvssrgb256.svg ├── tf_pqeotfoetf.pdf ├── tf_pqeotfoetf.svg ├── tf_sampling.pdf ├── tf_sampling.svg ├── tf_scene_store_display.pdf ├── tf_scene_store_display.svg ├── tf_srgbvsgamma.pdf ├── tf_srgbvsgamma.svg ├── tf_surround_luminance.pdf └── tf_surround_luminance.svg ├── inlinecss.pl ├── inlineimages.pl ├── out └── index.html ├── primaries.txt ├── pvrtc.txt ├── quantization.txt ├── references.txt ├── rgtc.txt ├── s3tc.txt ├── simplifyhtmllinks.pl ├── transferfunctions.txt └── uastc.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/Makefile -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/README.adoc -------------------------------------------------------------------------------- /astc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/astc.txt -------------------------------------------------------------------------------- /bptc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/bptc.txt -------------------------------------------------------------------------------- /colormodels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/colormodels.txt -------------------------------------------------------------------------------- /compformats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/compformats.txt -------------------------------------------------------------------------------- /compintro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/compintro.txt -------------------------------------------------------------------------------- /config/df-xhtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/config/df-xhtml.css -------------------------------------------------------------------------------- /config/docbook-xsl/chunked.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/config/docbook-xsl/chunked.xsl -------------------------------------------------------------------------------- /config/docbook-xsl/common.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/config/docbook-xsl/common.xsl -------------------------------------------------------------------------------- /config/docbook-xsl/pdf.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/config/docbook-xsl/pdf.xsl -------------------------------------------------------------------------------- /config/docbook-xsl/xhtml.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/config/docbook-xsl/xhtml.xsl -------------------------------------------------------------------------------- /config/mathjax-asciidoc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/config/mathjax-asciidoc.conf -------------------------------------------------------------------------------- /config/mathjax-docbook.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/config/mathjax-docbook.conf -------------------------------------------------------------------------------- /config/mathjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/config/mathjax.js -------------------------------------------------------------------------------- /conversionintro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/conversionintro.txt -------------------------------------------------------------------------------- /conversions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/conversions.txt -------------------------------------------------------------------------------- /dblatex/df.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/dblatex/df.sty -------------------------------------------------------------------------------- /dblatex/df_headfoot.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/dblatex/df_headfoot.sty -------------------------------------------------------------------------------- /dblatex/df_title.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/dblatex/df_title.sty -------------------------------------------------------------------------------- /df-docinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/df-docinfo.xml -------------------------------------------------------------------------------- /df.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/df.txt -------------------------------------------------------------------------------- /etc1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/etc1.txt -------------------------------------------------------------------------------- /etc2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/etc2.txt -------------------------------------------------------------------------------- /headers/khr_df.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/headers/khr_df.h -------------------------------------------------------------------------------- /images/1DByteOffset.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/1DByteOffset.pdf -------------------------------------------------------------------------------- /images/1DByteOffset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/1DByteOffset.svg -------------------------------------------------------------------------------- /images/1DRGBOffset.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/1DRGBOffset.pdf -------------------------------------------------------------------------------- /images/1DRGBOffset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/1DRGBOffset.svg -------------------------------------------------------------------------------- /images/1DWordOffset.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/1DWordOffset.pdf -------------------------------------------------------------------------------- /images/1DWordOffset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/1DWordOffset.svg -------------------------------------------------------------------------------- /images/1DYCbCr_CbCr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/1DYCbCr_CbCr.pdf -------------------------------------------------------------------------------- /images/1DYCbCr_CbCr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/1DYCbCr_CbCr.svg -------------------------------------------------------------------------------- /images/1DYCbCr_Y.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/1DYCbCr_Y.pdf -------------------------------------------------------------------------------- /images/1DYCbCr_Y.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/1DYCbCr_Y.svg -------------------------------------------------------------------------------- /images/1DYCbCr_cosited.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/1DYCbCr_cosited.pdf -------------------------------------------------------------------------------- /images/1DYCbCr_cosited.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/1DYCbCr_cosited.svg -------------------------------------------------------------------------------- /images/1DYCbCr_midpoint.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/1DYCbCr_midpoint.pdf -------------------------------------------------------------------------------- /images/1DYCbCr_midpoint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/1DYCbCr_midpoint.svg -------------------------------------------------------------------------------- /images/2DHilbertOffsets.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/2DHilbertOffsets.pdf -------------------------------------------------------------------------------- /images/2DHilbertOffsets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/2DHilbertOffsets.svg -------------------------------------------------------------------------------- /images/2DLinearOffsets.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/2DLinearOffsets.pdf -------------------------------------------------------------------------------- /images/2DLinearOffsets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/2DLinearOffsets.svg -------------------------------------------------------------------------------- /images/2DMortonOffsets.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/2DMortonOffsets.pdf -------------------------------------------------------------------------------- /images/2DMortonOffsets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/2DMortonOffsets.svg -------------------------------------------------------------------------------- /images/2DRGBOffsets.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/2DRGBOffsets.pdf -------------------------------------------------------------------------------- /images/2DRGBOffsets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/2DRGBOffsets.svg -------------------------------------------------------------------------------- /images/2DRGBplanes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/2DRGBplanes.pdf -------------------------------------------------------------------------------- /images/2DRGBplanes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/2DRGBplanes.svg -------------------------------------------------------------------------------- /images/2DTile4x4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/2DTile4x4.pdf -------------------------------------------------------------------------------- /images/2DTile4x4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/2DTile4x4.svg -------------------------------------------------------------------------------- /images/2DYCbCr420_KDFS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/2DYCbCr420_KDFS.pdf -------------------------------------------------------------------------------- /images/2DYCbCr420_KDFS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/2DYCbCr420_KDFS.svg -------------------------------------------------------------------------------- /images/2DYCbCr420_traditional.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/2DYCbCr420_traditional.pdf -------------------------------------------------------------------------------- /images/2DYCbCr420_traditional.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/2DYCbCr420_traditional.svg -------------------------------------------------------------------------------- /images/2DYCbCrKDFSEncoding.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/2DYCbCrKDFSEncoding.pdf -------------------------------------------------------------------------------- /images/2DYCbCrKDFSEncoding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/2DYCbCrKDFSEncoding.svg -------------------------------------------------------------------------------- /images/565pixels.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/565pixels.pdf -------------------------------------------------------------------------------- /images/565pixels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/565pixels.svg -------------------------------------------------------------------------------- /images/Bayer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/Bayer.pdf -------------------------------------------------------------------------------- /images/Bayer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/Bayer.svg -------------------------------------------------------------------------------- /images/Bayer18x12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/Bayer18x12.pdf -------------------------------------------------------------------------------- /images/Bayer18x12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/Bayer18x12.svg -------------------------------------------------------------------------------- /images/ETC1Diff.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/ETC1Diff.pdf -------------------------------------------------------------------------------- /images/ETC1Diff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/ETC1Diff.svg -------------------------------------------------------------------------------- /images/ETC1Ind.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/ETC1Ind.pdf -------------------------------------------------------------------------------- /images/ETC1Ind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/ETC1Ind.svg -------------------------------------------------------------------------------- /images/ETC2H.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/ETC2H.pdf -------------------------------------------------------------------------------- /images/ETC2H.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/ETC2H.svg -------------------------------------------------------------------------------- /images/ETC2P.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/ETC2P.pdf -------------------------------------------------------------------------------- /images/ETC2P.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/ETC2P.svg -------------------------------------------------------------------------------- /images/ETC2T.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/ETC2T.pdf -------------------------------------------------------------------------------- /images/ETC2T.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/ETC2T.svg -------------------------------------------------------------------------------- /images/ETC2x4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/ETC2x4.pdf -------------------------------------------------------------------------------- /images/ETC2x4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/ETC2x4.svg -------------------------------------------------------------------------------- /images/ETC4x2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/ETC4x2.pdf -------------------------------------------------------------------------------- /images/ETC4x2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/ETC4x2.svg -------------------------------------------------------------------------------- /images/ETCletter8x8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/ETCletter8x8.pdf -------------------------------------------------------------------------------- /images/ETCletter8x8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/ETCletter8x8.svg -------------------------------------------------------------------------------- /images/ETCletterdirections.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/ETCletterdirections.pdf -------------------------------------------------------------------------------- /images/ETCletterdirections.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/ETCletterdirections.svg -------------------------------------------------------------------------------- /images/Khronos_RGB_June18.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/Khronos_RGB_June18.pdf -------------------------------------------------------------------------------- /images/Khronos_RGB_June18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/Khronos_RGB_June18.svg -------------------------------------------------------------------------------- /images/Morton.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/Morton.pdf -------------------------------------------------------------------------------- /images/Morton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/Morton.svg -------------------------------------------------------------------------------- /images/PVRTC1_image_reconstruction_simple.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/PVRTC1_image_reconstruction_simple.pdf -------------------------------------------------------------------------------- /images/PVRTC1_image_reconstruction_simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/PVRTC1_image_reconstruction_simple.svg -------------------------------------------------------------------------------- /images/PVRTC1_image_reconstruction_wrap.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/PVRTC1_image_reconstruction_wrap.pdf -------------------------------------------------------------------------------- /images/PVRTC1_image_reconstruction_wrap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/PVRTC1_image_reconstruction_wrap.svg -------------------------------------------------------------------------------- /images/PVRTC2_hard_transition.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/PVRTC2_hard_transition.pdf -------------------------------------------------------------------------------- /images/PVRTC2_hard_transition.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/PVRTC2_hard_transition.svg -------------------------------------------------------------------------------- /images/RGB565BEKDFSEncoding.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/RGB565BEKDFSEncoding.pdf -------------------------------------------------------------------------------- /images/RGB565BEKDFSEncoding.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/RGB565BEKDFSEncoding.svg -------------------------------------------------------------------------------- /images/X-Trans18x12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/X-Trans18x12.pdf -------------------------------------------------------------------------------- /images/X-Trans18x12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/X-Trans18x12.svg -------------------------------------------------------------------------------- /images/all_glory_to_the_hypnotoad_24.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/all_glory_to_the_hypnotoad_24.pdf -------------------------------------------------------------------------------- /images/all_glory_to_the_hypnotoad_24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/all_glory_to_the_hypnotoad_24.svg -------------------------------------------------------------------------------- /images/all_glory_to_the_hypnotoad_24_cosited.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/all_glory_to_the_hypnotoad_24_cosited.pdf -------------------------------------------------------------------------------- /images/all_glory_to_the_hypnotoad_24_cosited.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/all_glory_to_the_hypnotoad_24_cosited.svg -------------------------------------------------------------------------------- /images/all_glory_to_the_hypnotoad_30.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/all_glory_to_the_hypnotoad_30.pdf -------------------------------------------------------------------------------- /images/all_glory_to_the_hypnotoad_30.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/all_glory_to_the_hypnotoad_30.svg -------------------------------------------------------------------------------- /images/all_glory_to_the_hypnotoad_30_cosited.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/all_glory_to_the_hypnotoad_30_cosited.pdf -------------------------------------------------------------------------------- /images/all_glory_to_the_hypnotoad_30_cosited.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/all_glory_to_the_hypnotoad_30_cosited.svg -------------------------------------------------------------------------------- /images/bc1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/bc1.pdf -------------------------------------------------------------------------------- /images/bc1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/bc1.svg -------------------------------------------------------------------------------- /images/bc1a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/bc1a.pdf -------------------------------------------------------------------------------- /images/bc1a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/bc1a.svg -------------------------------------------------------------------------------- /images/cb16all.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/cb16all.pdf -------------------------------------------------------------------------------- /images/cb16all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/cb16all.svg -------------------------------------------------------------------------------- /images/cb16all_cosited.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/cb16all_cosited.pdf -------------------------------------------------------------------------------- /images/cb16all_cosited.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/cb16all_cosited.svg -------------------------------------------------------------------------------- /images/cb21all.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/cb21all.pdf -------------------------------------------------------------------------------- /images/cb21all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/cb21all.svg -------------------------------------------------------------------------------- /images/cb21all_cosited.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/cb21all_cosited.pdf -------------------------------------------------------------------------------- /images/cb21all_cosited.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/cb21all_cosited.svg -------------------------------------------------------------------------------- /images/colorconversion_accurate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/colorconversion_accurate.pdf -------------------------------------------------------------------------------- /images/colorconversion_accurate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/colorconversion_accurate.svg -------------------------------------------------------------------------------- /images/colorconversion_approximate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/colorconversion_approximate.pdf -------------------------------------------------------------------------------- /images/colorconversion_approximate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/colorconversion_approximate.svg -------------------------------------------------------------------------------- /images/icons/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/icons/note.png -------------------------------------------------------------------------------- /images/tf_colorshift_intensitylinearvalues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/tf_colorshift_intensitylinearvalues.png -------------------------------------------------------------------------------- /images/tf_colorshift_srgblinearvalues.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/tf_colorshift_srgblinearvalues.png -------------------------------------------------------------------------------- /images/tf_curves.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/tf_curves.pdf -------------------------------------------------------------------------------- /images/tf_curves.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/tf_curves.svg -------------------------------------------------------------------------------- /images/tf_hlg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/tf_hlg.pdf -------------------------------------------------------------------------------- /images/tf_hlg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/tf_hlg.svg -------------------------------------------------------------------------------- /images/tf_hlgeotfoetf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/tf_hlgeotfoetf.pdf -------------------------------------------------------------------------------- /images/tf_hlgeotfoetf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/tf_hlgeotfoetf.svg -------------------------------------------------------------------------------- /images/tf_ituvsgamma256.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/tf_ituvsgamma256.pdf -------------------------------------------------------------------------------- /images/tf_ituvsgamma256.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/tf_ituvsgamma256.svg -------------------------------------------------------------------------------- /images/tf_ituvsgamma2_0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/tf_ituvsgamma2_0.pdf -------------------------------------------------------------------------------- /images/tf_ituvsgamma2_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/tf_ituvsgamma2_0.svg -------------------------------------------------------------------------------- /images/tf_ituvsgamma2_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/tf_ituvsgamma2_2.pdf -------------------------------------------------------------------------------- /images/tf_ituvsgamma2_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/tf_ituvsgamma2_2.svg -------------------------------------------------------------------------------- /images/tf_ituvssrgb256.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/tf_ituvssrgb256.pdf -------------------------------------------------------------------------------- /images/tf_ituvssrgb256.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/tf_ituvssrgb256.svg -------------------------------------------------------------------------------- /images/tf_pqeotfoetf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/tf_pqeotfoetf.pdf -------------------------------------------------------------------------------- /images/tf_pqeotfoetf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/tf_pqeotfoetf.svg -------------------------------------------------------------------------------- /images/tf_sampling.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/tf_sampling.pdf -------------------------------------------------------------------------------- /images/tf_sampling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/tf_sampling.svg -------------------------------------------------------------------------------- /images/tf_scene_store_display.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/tf_scene_store_display.pdf -------------------------------------------------------------------------------- /images/tf_scene_store_display.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/tf_scene_store_display.svg -------------------------------------------------------------------------------- /images/tf_srgbvsgamma.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/tf_srgbvsgamma.pdf -------------------------------------------------------------------------------- /images/tf_srgbvsgamma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/tf_srgbvsgamma.svg -------------------------------------------------------------------------------- /images/tf_surround_luminance.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/tf_surround_luminance.pdf -------------------------------------------------------------------------------- /images/tf_surround_luminance.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/images/tf_surround_luminance.svg -------------------------------------------------------------------------------- /inlinecss.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/inlinecss.pl -------------------------------------------------------------------------------- /inlineimages.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/inlineimages.pl -------------------------------------------------------------------------------- /out/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/out/index.html -------------------------------------------------------------------------------- /primaries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/primaries.txt -------------------------------------------------------------------------------- /pvrtc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/pvrtc.txt -------------------------------------------------------------------------------- /quantization.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/quantization.txt -------------------------------------------------------------------------------- /references.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/references.txt -------------------------------------------------------------------------------- /rgtc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/rgtc.txt -------------------------------------------------------------------------------- /s3tc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/s3tc.txt -------------------------------------------------------------------------------- /simplifyhtmllinks.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/simplifyhtmllinks.pl -------------------------------------------------------------------------------- /transferfunctions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/transferfunctions.txt -------------------------------------------------------------------------------- /uastc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KhronosGroup/DataFormat/HEAD/uastc.txt --------------------------------------------------------------------------------