Class: Gdk::Pixbuf

Inherits:
Object
  • Object
show all
Defined in:
lib/gdk_pixbuf2.rb

Constant Summary collapse

LOG_DOMAIN =
"GdkPixbuf"

Class Method Summary collapse

Class Method Details

.cairo_available?Boolean

Returns:

  • (Boolean)


46
47
48
49
50
51
52
# File 'lib/gdk_pixbuf2.rb', line 46

def cairo_available?
  if Gdk.respond_to?(:cairo_available?)
    Gdk.cairo_available?
  else
    false
  end
end