dxrubynd 1.4.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,22 @@
1
+ /* Image�I�u�W�F�N�g�̒��g */
2
+ struct DXRubyImage {
3
+ struct DXRubyTexture *texture;
4
+ int x; /* x�n�_�ʒu */
5
+ int y; /* y�n�_�ʒu */
6
+ int width; /* �C���[�W�̕� */
7
+ int height;/* �C���[�W�̍��� */
8
+ // int lockcount; /* ���b�N�J�E���g */
9
+ };
10
+
11
+ void Init_dxruby_Image( void );
12
+ void finalize_dxruby_Image( void );
13
+
14
+ void Image_release( struct DXRubyImage* image );
15
+ VALUE Image_drawFontEx( int argc, VALUE *argv, VALUE obj );
16
+ VALUE Image_dispose( VALUE self );
17
+ VALUE Image_allocate( VALUE klass );
18
+ VALUE Image_initialize( int argc, VALUE *argv, VALUE obj );
19
+ int array2color( VALUE color );
20
+ VALUE Image_save( int argc, VALUE *argv, VALUE self );
21
+ VALUE Image_sliceToArray( int argc, VALUE *argv, VALUE self );
22
+