class Gosu::ImageData
The ImageData
class is an abstract base class for drawable images. Instances of classes derived by ImageData
are usually returned by Graphics::createImage and usually only used to implement drawing primitives like Image
, which then provide a more specialized and intuitive drawing interface.
Public Instance Methods
draw( x1, y1, c1, x2, y2, c2, x3, y3, c3, x4, y4, c4, z, mode)
click to toggle source
# File lib/gosu_android/graphics/imageData.rb, line 16 def draw( x1, y1, c1, x2, y2, c2, x3, y3, c3, x4, y4, c4, z, mode); end
gl_tex_info()
click to toggle source
# File lib/gosu_android/graphics/imageData.rb, line 19 def gl_tex_info; end
height()
click to toggle source
# File lib/gosu_android/graphics/imageData.rb, line 14 def height; end
to_bitmap()
click to toggle source
# File lib/gosu_android/graphics/imageData.rb, line 20 def to_bitmap; end
width()
click to toggle source
# File lib/gosu_android/graphics/imageData.rb, line 13 def width; end