diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2011-05-05 00:13:06 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2011-05-05 00:13:06 +0200 |
commit | f3d11962e77d25d19a312b4baa1a390539b2187b (patch) | |
tree | d7a3842583a0607cba272a85b210f5947ed9ec57 /lib/efl/evas.rb | |
parent | e4baccaefd209a25daa3ff8d5277fe86aca1d379 (diff) | |
download | ffi-efl-f3d11962e77d25d19a312b4baa1a390539b2187b.zip ffi-efl-f3d11962e77d25d19a312b4baa1a390539b2187b.tar.gz |
all FFI into one module Efl::Native
Diffstat (limited to 'lib/efl/evas.rb')
-rw-r--r-- | lib/efl/evas.rb | 64 |
1 files changed, 32 insertions, 32 deletions
diff --git a/lib/efl/evas.rb b/lib/efl/evas.rb index 4637ae3..05ca491 100644 --- a/lib/efl/evas.rb +++ b/lib/efl/evas.rb @@ -5,40 +5,40 @@ require 'efl/native/evas' # module Efl # - module Evas + module Native # - module Native - # - callback :new_update_region_cb, [:int, :int, :int, :int, :int_p], :pointer - callback :free_update_region_cb, [:int, :int, :int, :int, :pointer], :void - # - class EngineInfoStruct < FFI::Struct - layout :magic, :int - end - class EngineInfoBufferFuncStruct < FFI::Struct - layout :new_update_region, :new_update_region_cb, - :free_update_region, :free_update_region_cb - end - class EngineInfoBufferInfoStruct < FFI::Struct - layout :depth_type, :int, - :dest_buffer, :pointer, - :dest_buffer_row_bytes, :int, - :use_color_key, :char, - :alpha_threshold, :int, - :color_key_r, :int, - :color_key_g, :int, - :color_key_b, :int, - :func, EngineInfoBufferFuncStruct - end - class EngineInfoBufferStruct < FFI::Struct - layout :magic, EngineInfoStruct, - :info, EngineInfoBufferInfoStruct, + callback :new_update_region_cb, [:int, :int, :int, :int, :int_p], :pointer + callback :free_update_region_cb, [:int, :int, :int, :int, :pointer], :void + # + class EngineInfoStruct < FFI::Struct + layout :magic, :int + end + class EngineInfoBufferFuncStruct < FFI::Struct + layout :new_update_region, :new_update_region_cb, + :free_update_region, :free_update_region_cb + end + class EngineInfoBufferInfoStruct < FFI::Struct + layout :depth_type, :int, + :dest_buffer, :pointer, + :dest_buffer_row_bytes, :int, + :use_color_key, :char, + :alpha_threshold, :int, + :color_key_r, :int, + :color_key_g, :int, + :color_key_b, :int, + :func, EngineInfoBufferFuncStruct + end + class EngineInfoBufferStruct < FFI::Struct + layout :magic, EngineInfoStruct, + :info, EngineInfoBufferInfoStruct, # :func, EvasEngineInfoBufferFunc, - :mode, :evas_engine_render_mode - end - # + :mode, :evas_engine_render_mode end # + end + # + module Evas + # EVAS_ENGINE_BUFFER_DEPTH_ARGB32 = 0 EVAS_ENGINE_BUFFER_DEPTH_BGRA32 = 1 EVAS_ENGINE_BUFFER_DEPTH_RGB24 = 2 @@ -48,7 +48,7 @@ module Efl class REvas # include Efl::ClassHelper - proxy_list [Efl::Evas::Native,'evas_'].freeze + proxy_list [Efl::Native,'evas_'].freeze # def initialize o=nil @ptr = ( @@ -108,7 +108,7 @@ module Efl class REvasObject # include Efl::ClassHelper - proxy_list [Efl::Evas::Native,'evas_object_'].freeze, [Efl::Evas::Native,'evas_'].freeze + proxy_list [Efl::Native,'evas_object_'].freeze, [Efl::Native,'evas_'].freeze # def initialize o=nil @ptr = ( |