/* call-seq:
 *   settings.stencilBits       -> stencil
 *
 * Bits of the stencil buffer
 */
static VALUE ContextSettings_GetStencil( VALUE self )
{
        sf::ContextSettings *object = NULL;
        Data_Get_Struct( self, sf::ContextSettings, object );
        return INT2FIX( object->StencilBits );
}