/* call-seq:
 *   settings.depthBits -> depth
 *
 * Bits of the depth buffer
 */
static VALUE ContextSettings_GetDepth( VALUE self )
{
        sf::ContextSettings *object = NULL;
        Data_Get_Struct( self, sf::ContextSettings, object );
        return INT2FIX( object->DepthBits );
}