Added 16 bit support for the DIB conversion

This commit is contained in:
dcone%netscape.com 1999-09-17 14:14:17 +00:00
Родитель 90700cf8ca
Коммит 6a45becd7a
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -763,6 +763,8 @@ PRInt16 numPaletteColors;
} else if (24 == aDepth) { } else if (24 == aDepth) {
numPaletteColors = 0; numPaletteColors = 0;
*aNumBytesPix = 3; *aNumBytesPix = 3;
} else if (16 == aDepth) {
*aNumBytesPix = 2;
} else { } else {
NS_ASSERTION(PR_FALSE, "unexpected image depth"); NS_ASSERTION(PR_FALSE, "unexpected image depth");
return NS_ERROR_UNEXPECTED; return NS_ERROR_UNEXPECTED;