module Fox class FXMemoryBuffer # Pixel buffer, an array of FXColor values [Array] attr_reader :data # # Return a new FXMemoryBuffer instance, initialized with the # provided array of FXColor values. # # ==== Parameters: # # +data+:: the initial array of FXColor values. # def initialize(data, size); end # Return the specified element (an FXColor value) def [](index); end # Set the specified element to _clr_. def []=(index, clr); end end end