Make ::GetPixelDepth() know about rgb16

This commit is contained in:
cls%seawood.org 2006-01-11 21:27:46 +00:00
Родитель 51a7ceb008
Коммит b81dafada2
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -94,6 +94,9 @@ nsScreenBeOS :: GetPixelDepth(PRInt32 *aPixelDepth)
case B_RGB15:
pixelDepth = 15;
break;
case B_RGB16:
pixelDepth = 16;
break;
default:
printf("FIXME: Please add this screen depth to the code nsScreenBeOS.cpp\n");
pixelDepth = 32;