Codebase list ruby-fxruby / 55b7dfec-7e94-4d45-9893-75403ede1853/main rdoc-sources / FXMemoryBuffer.rb
55b7dfec-7e94-4d45-9893-75403ede1853/main

Tree @55b7dfec-7e94-4d45-9893-75403ede1853/main (Download .tar.gz)

FXMemoryBuffer.rb @55b7dfec-7e94-4d45-9893-75403ede1853/mainraw · history · blame

module Fox
  # This class is deprecated. Use FXImage methods instead.
  class FXMemoryBuffer

    #
    # Return a new FXMemoryBuffer instance, initialized with the
    # provided array of FXColor values.
    #
    # ==== Parameters:
    #
    # +data+:: the initial array of FXColor values.
    #
    def initialize(data); end

    # Return a copy of the pixel buffer, as an array of FXColor values [Array]
    def data; end
    alias to_a data

    # Return the size of the pixel buffer
    def size; end

    # Return the specified element (an FXColor value)
    def [](index); end

    # Set the specified element to _clr_.
    def []=(index, clr); end
  end
end