mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-06-23 06:23:10 +03:00
commit
72f66fa448
|
@ -3,7 +3,7 @@ A Pillow loader for .dds files (S3TC-compressed aka DXTC)
|
||||||
Jerome Leclanche <jerome@leclan.ch>
|
Jerome Leclanche <jerome@leclan.ch>
|
||||||
|
|
||||||
Documentation:
|
Documentation:
|
||||||
http://oss.sgi.com/projects/ogl-sample/registry/EXT/texture_compression_s3tc.txt
|
https://web.archive.org/web/20170802060935/http://oss.sgi.com/projects/ogl-sample/registry/EXT/texture_compression_s3tc.txt
|
||||||
|
|
||||||
The contents of this file are hereby released in the public domain (CC0)
|
The contents of this file are hereby released in the public domain (CC0)
|
||||||
Full text of the CC0 license:
|
Full text of the CC0 license:
|
||||||
|
|
|
@ -341,7 +341,7 @@ def pdf_repr(x):
|
||||||
|
|
||||||
|
|
||||||
class PdfParser:
|
class PdfParser:
|
||||||
"""Based on http://www.adobe.com/content/dam/acom/en/devnet/acrobat/pdfs/PDF32000_2008.pdf
|
"""Based on https://www.adobe.com/content/dam/acom/en/devnet/acrobat/pdfs/PDF32000_2008.pdf
|
||||||
Supports PDF up to 1.4
|
Supports PDF up to 1.4
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
* decoder for DXTn-compressed data
|
* decoder for DXTn-compressed data
|
||||||
*
|
*
|
||||||
* Format documentation:
|
* Format documentation:
|
||||||
* http://oss.sgi.com/projects/ogl-sample/registry/EXT/texture_compression_s3tc.txt
|
* https://web.archive.org/web/20170802060935/http://oss.sgi.com/projects/ogl-sample/registry/EXT/texture_compression_s3tc.txt
|
||||||
*
|
*
|
||||||
* The contents of this file are in the public domain (CC0)
|
* The contents of this file are in the public domain (CC0)
|
||||||
* Full text of the CC0 license:
|
* Full text of the CC0 license:
|
||||||
|
@ -178,7 +178,7 @@ static void decode_bc5_block(rgba *col, const UINT8* src) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* BC6 and BC7 are described here:
|
/* BC6 and BC7 are described here:
|
||||||
https://www.opengl.org/registry/specs/ARB/texture_compression_bptc.txt */
|
https://www.khronos.org/registry/OpenGL/extensions/ARB/ARB_texture_compression_bptc.txt */
|
||||||
|
|
||||||
static UINT8 get_bit(const UINT8* src, int bit) {
|
static UINT8 get_bit(const UINT8* src, int bit) {
|
||||||
int by = bit >> 3;
|
int by = bit >> 3;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user