Detemining screen color depth
Article Metadata
Tested with
Devices(s): N78
Compatibility
Platform(s): S60 3rd Edition (initial release, FP1, FP2)
Article
Keywords: keywords=HAL::Get()
Created: lming
(01 Nov 2008)
Last edited: hamishwillee
(01 Aug 2012)
Contents |
Overview
This snippet demonstrates how to retrieve the screen color depth of S60 3rd Edition devices. This snippet can be self-signed.
Use case
Some color depths for S60 3rd Edition devices are 16 bit (65,536), 18 bit (262,144), and 24 bit (16,777,216). Some devices that have these color depths: N92 (16 bit), 3250 (18 bit), and E61 (24 bit).
An application could detect the color depth and load compatible images (that have the same color depth as the screen), for example.
Source file
//necessary library
LIBRARY HAL.LIB
//necessary header file
#include <HAL.h>
#include <hal_data.h>
//displayColors contains color depth of this device
TInt displayColors;
//retrieve EDisplayColors value of this phone
HAL::Get( HALData::EDisplayColors, displayColors );
Postconditions
The displayColors variable contains the color depth of this device. For example, on a N78 this value would be 16,777,216 (24 bit).


(no comments yet)