texplay 0.2.4-x86-mswin32-60 → 0.2.5-x86-mswin32-60
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +94 -88
- data/README.markdown +35 -35
- data/Rakefile +66 -87
- data/examples/example_bezier.rb +1 -1
- data/examples/example_dup.rb +24 -1
- data/examples/example_lsystem.rb +59 -51
- data/examples/example_scale.rb +29 -0
- data/{src → ext/texplay}/actions.c +2 -2
- data/{src → ext/texplay}/actions.h +0 -0
- data/{src → ext/texplay}/bindings.c +0 -0
- data/{src → ext/texplay}/bindings.h +0 -0
- data/{src → ext/texplay}/cache.c +5 -2
- data/{src → ext/texplay}/cache.h +0 -0
- data/{src → ext/texplay}/compat.h +0 -0
- data/{src → ext/texplay}/extconf.rb +2 -2
- data/{src → ext/texplay}/gen_eval.c +0 -0
- data/{src → ext/texplay}/gen_eval.h +0 -0
- data/{src → ext/texplay}/object2module.c +0 -0
- data/{src → ext/texplay}/object2module.h +0 -0
- data/{src → ext/texplay}/texplay.c +1 -1
- data/{src → ext/texplay}/texplay.h +0 -0
- data/{src → ext/texplay}/utils.c +10 -7
- data/{src → ext/texplay}/utils.h +0 -0
- data/lib/{ctexplay.18.so → 1.8/texplay.so} +0 -0
- data/lib/{ctexplay.19.so → 1.9/texplay.so} +0 -0
- data/lib/texplay-contrib.rb +171 -149
- data/lib/texplay.rb +134 -134
- metadata +21 -36
- data/src/Makefile +0 -212
- data/src/TAGS +0 -286
- data/src/actions.obj +0 -0
- data/src/bindings.obj +0 -0
- data/src/cache.obj +0 -0
- data/src/ctexplay-i386-mswin32.def +0 -2
- data/src/ctexplay-i386-mswin32.exp +0 -0
- data/src/ctexplay-i386-mswin32.lib +0 -0
- data/src/ctexplay-i386-mswin32.pdb +0 -0
- data/src/ctexplay.so +0 -0
- data/src/gen_eval.obj +0 -0
- data/src/mkmf.log +0 -33
- data/src/object2module.obj +0 -0
- data/src/texplay.obj +0 -0
- data/src/utils.obj +0 -0
- data/src/vc60.pdb +0 -0
data/src/TAGS
DELETED
@@ -1,286 +0,0 @@
|
|
1
|
-
|
2
|
-
actions.c,3564
|
3
|
-
do_sync(action_struct * cur, texture_info * tex) do_sync34,1286
|
4
|
-
line_do_action(int x1, int y1, int x2, int y2, texture_info * tex, VALUE hash_arg,line_do_action44,1509
|
5
|
-
#define SIMPLE_FORMAT SIMPLE_FORMAT126,3531
|
6
|
-
#define POINT_FORMAT POINT_FORMAT127,3555
|
7
|
-
polyline_point(VALUE points, int k, int * x, int * y, int format, int draw_offset_x,polyline_point131,3622
|
8
|
-
polyline_do_action(VALUE points, texture_info * tex, VALUE hash_arg,polyline_do_action154,4324
|
9
|
-
ngon_do_action(int x, int y, int r, int num_sides, texture_info * tex, VALUE hash_arg,ngon_do_action231,6780
|
10
|
-
rect_do_action(int x1, int y1, int x2, int y2, texture_info * tex, VALUE hash_arg,rect_do_action275,8056
|
11
|
-
circle_do_action(int x1, int y1, int r, texture_info * tex, VALUE hash_arg,circle_do_action329,9856
|
12
|
-
pixel_do_action(int x1, int y1, texture_info * tex, VALUE hash_arg,pixel_do_action403,12271
|
13
|
-
typedef struct { int x1, x2, y, dy; } LINESEGMENT;x1417,12704
|
14
|
-
typedef struct { int x1, x2, y, dy; } LINESEGMENT;x2417,12704
|
15
|
-
typedef struct { int x1, x2, y, dy; } LINESEGMENT;y417,12704
|
16
|
-
typedef struct { int x1, x2, y, dy; } LINESEGMENT;dy417,12704
|
17
|
-
typedef struct { int x1, x2, y, dy; } LINESEGMENT;LINESEGMENT417,12704
|
18
|
-
#define MAXDEPTH MAXDEPTH419,12756
|
19
|
-
#define PUSH(PUSH421,12780
|
20
|
-
#define POP(POP425,12997
|
21
|
-
flood_fill_do_action(int x, int y, texture_info * tex, VALUE hash_arg,flood_fill_do_action429,13142
|
22
|
-
glow_floodFill( int x, int y, rgba * seed_color, action_struct * cur, texture_info * tex, texture_info * tex2 )glow_floodFill498,15194
|
23
|
-
glow_fill_do_action(int x, int y, texture_info * tex, VALUE hash_arg,glow_fill_do_action552,17088
|
24
|
-
#define stackSize stackSize586,18167
|
25
|
-
int stack[stackSize];stack587,18194
|
26
|
-
int stackPointer;stackPointer588,18216
|
27
|
-
pop(int * x, int * y, int h) pop591,18247
|
28
|
-
push(int x, int y, int h) push608,18559
|
29
|
-
emptyStack() emptyStack623,18834
|
30
|
-
scan_fill_do_action(int x, int y, texture_info * tex, VALUE hash_arg,scan_fill_do_action630,18902
|
31
|
-
bezier_point(VALUE points, float u, float * x, float * y, int n, int format,bezier_point700,21601
|
32
|
-
bezier_do_action(VALUE points, texture_info * tex, VALUE hash_arg, sync sync_mode,bezier_do_action731,22561
|
33
|
-
set_color_array(VALUE ary, rgba * color)set_color_array831,25683
|
34
|
-
each_pixel_do_action(int x1, int y1, int x2, int y2, VALUE proc, texture_info * tex, VALUE hash_arg,each_pixel_do_action840,25963
|
35
|
-
splice_do_action(int x0, int y0, int cx1, int cy1, int cx2, int cy2, texture_info * splice_tex,splice_do_action869,26797
|
36
|
-
process_common_hash_args(action_struct * cur, VALUE * hash_arg, sync sync_mode, bool primary)process_common_hash_args940,29218
|
37
|
-
update_lazy_bounds(action_struct * cur, texture_info * tex)update_lazy_bounds1021,32185
|
38
|
-
update_bounds(action_struct * cur, int xmin, int ymin, int xmax, int ymax)update_bounds1044,33016
|
39
|
-
set_local_bounds(action_struct * cur, int xmin, int ymin, int xmax, int ymax, texture_info * tex)set_local_bounds1056,33341
|
40
|
-
draw_prologue(action_struct * cur, texture_info * tex, int xmin, int ymin, int xmax, int ymax,draw_prologue1072,33773
|
41
|
-
draw_epilogue(action_struct * cur, texture_info * tex, bool primary)draw_epilogue1089,34284
|
42
|
-
prepare_color_control(action_struct * cur)prepare_color_control1119,34991
|
43
|
-
exec_color_control_proc(action_struct * cur, texture_info * tex, int x, int y)exec_color_control_proc1135,35475
|
44
|
-
prepare_fill_texture(action_struct * payload)prepare_fill_texture1179,37313
|
45
|
-
set_pixel_color_with_style(action_struct * payload, texture_info * tex, int x, int y)set_pixel_color_with_style1195,37707
|
46
|
-
|
47
|
-
actions.h,45
|
48
|
-
#define GUARD_ACTIONS_HGUARD_ACTIONS_H2,24
|
49
|
-
|
50
|
-
bindings.c,2070
|
51
|
-
sync sync_mode = eager_sync;sync_mode31,585
|
52
|
-
process_x_y_pairs(VALUE image, int num_pairs, VALUE * argv, ...)process_x_y_pairs34,627
|
53
|
-
M_create_macro(VALUE self, VALUE method_name) M_create_macro78,1755
|
54
|
-
M_remove_macro(VALUE self, VALUE method_name) M_remove_macro96,2138
|
55
|
-
M_refresh_cache_all(VALUE self) M_refresh_cache_all107,2385
|
56
|
-
M_create_blank(VALUE self, VALUE window, VALUE width, VALUE height)M_create_blank116,2500
|
57
|
-
rb_lazy_bounds_to_image_bounds(VALUE image, image_bounds * bounds)rb_lazy_bounds_to_image_bounds128,2767
|
58
|
-
parse_sync_mode(VALUE user_sync_mode)parse_sync_mode143,3223
|
59
|
-
m_paint(int argc, VALUE * argv, VALUE self) m_paint166,3853
|
60
|
-
m_force_sync(VALUE self, VALUE ary)m_force_sync239,5754
|
61
|
-
m_dup_image(VALUE self)m_dup_image261,6219
|
62
|
-
m_clone_image(VALUE self)m_clone_image290,7033
|
63
|
-
m_user_set_options(VALUE self, VALUE options)m_user_set_options305,7329
|
64
|
-
m_user_delete_options(VALUE self)m_user_delete_options318,7587
|
65
|
-
m_get_options(VALUE self)m_get_options329,7723
|
66
|
-
m_getpixel(int argc, VALUE * argv, VALUE self) m_getpixel338,7882
|
67
|
-
m_circle(int argc, VALUE * argv, VALUE self) m_circle363,8384
|
68
|
-
m_ngon(int argc, VALUE * argv, VALUE self)m_ngon392,8958
|
69
|
-
m_flood_fill(int argc, VALUE * argv, VALUE self)m_flood_fill420,9519
|
70
|
-
m_line(int argc, VALUE * argv, VALUE self) m_line463,10488
|
71
|
-
m_rect(int argc, VALUE * argv, VALUE self) m_rect487,10973
|
72
|
-
m_pixel(int argc, VALUE * argv, VALUE self) m_pixel513,11463
|
73
|
-
m_bezier(int argc, VALUE * argv, VALUE self)m_bezier537,11925
|
74
|
-
m_polyline(int argc, VALUE * argv, VALUE self)m_polyline563,12455
|
75
|
-
m_splice(int argc, VALUE * argv, VALUE self) m_splice591,12982
|
76
|
-
m_clear(int argc, VALUE * argv, VALUE self) m_clear638,14314
|
77
|
-
m_offset(int argc, VALUE * argv, VALUE self) m_offset654,14599
|
78
|
-
m_color(int argc, VALUE * argv, VALUE self) m_color688,15349
|
79
|
-
m_missing(int argc, VALUE * argv, VALUE self) m_missing718,16182
|
80
|
-
m_cache_refresh(VALUE self) m_cache_refresh736,16672
|
81
|
-
m_quad_cached(VALUE self) m_quad_cached751,16895
|
82
|
-
m_each(int argc, VALUE * argv, VALUE self)m_each777,17450
|
83
|
-
|
84
|
-
bindings.h,47
|
85
|
-
#define GUARD_BINDINGS_HGUARD_BINDINGS_H2,25
|
86
|
-
|
87
|
-
cache.c,338
|
88
|
-
static cache_t cache = {0}; cache16,219
|
89
|
-
cache_create_entry(int tname) {cache_create_entry20,293
|
90
|
-
find_in_cache(int tname) {find_in_cache59,1556
|
91
|
-
find_or_create_cache_entry(int tname) {find_or_create_cache_entry73,1908
|
92
|
-
cache_refresh_all(void) {cache_refresh_all84,2130
|
93
|
-
cache_refresh_entry(int tname) {cache_refresh_entry109,2794
|
94
|
-
|
95
|
-
cache.h,350
|
96
|
-
#define GUARD_CACHE_HGUARD_CACHE_H5,71
|
97
|
-
#define CACHE_SIZE CACHE_SIZE8,108
|
98
|
-
int tname;tname12,167
|
99
|
-
int sidelength;sidelength13,182
|
100
|
-
float * tdata;tdata14,202
|
101
|
-
} cache_entry;cache_entry15,221
|
102
|
-
int len;len18,254
|
103
|
-
cache_entry entry[CACHE_SIZE]; entry19,267
|
104
|
-
} cache_t;cache_t20,344
|
105
|
-
|
106
|
-
compat.h,241
|
107
|
-
#define GUARD_COMPAT_HGUARD_COMPAT_H4,102
|
108
|
-
# define RUBY_19RUBY_1910,218
|
109
|
-
# define RCLASS_M_TBL(RCLASS_M_TBL15,309
|
110
|
-
# define RCLASS_SUPER(RCLASS_SUPER16,353
|
111
|
-
# define RCLASS_IV_TBL(RCLASS_IV_TBL17,397
|
112
|
-
#define KLASS_OF(KLASS_OF21,534
|
113
|
-
|
114
|
-
gen_eval.c,444
|
115
|
-
retrieve_hidden_self(VALUE duped_context)retrieve_hidden_self11,247
|
116
|
-
set_hidden_self(VALUE duped_context, VALUE hidden_self)set_hidden_self25,652
|
117
|
-
rb_capture(VALUE self) {rb_capture38,1103
|
118
|
-
redirect_iv_for_object(VALUE obj, VALUE dest)redirect_iv_for_object59,1553
|
119
|
-
release_iv_for_object(VALUE obj)release_iv_for_object79,2305
|
120
|
-
rb_gen_eval(int argc, VALUE * argv, VALUE self) {rb_gen_eval93,2658
|
121
|
-
Init_gen_eval() {Init_gen_eval185,5307
|
122
|
-
|
123
|
-
gen_eval.h,87
|
124
|
-
#define GUARD_GEN_EVAL_HGUARD_GEN_EVAL_H4,43
|
125
|
-
#define ADJUST_SELF(ADJUST_SELF14,345
|
126
|
-
|
127
|
-
object2module.c,410
|
128
|
-
class_alloc(VALUE flags, VALUE klass)class_alloc18,359
|
129
|
-
j_class_new(VALUE module, VALUE sup)j_class_new34,752
|
130
|
-
rb_to_module(VALUE self)rb_to_module81,1735
|
131
|
-
rb_reset_tbls(VALUE self)rb_reset_tbls115,2493
|
132
|
-
rb_gen_extend(int argc, VALUE * argv, VALUE self)rb_gen_extend124,2738
|
133
|
-
rb_gen_include(int argc, VALUE * argv, VALUE self)rb_gen_include145,3259
|
134
|
-
void Init_object2module()Init_object2module163,3696
|
135
|
-
|
136
|
-
object2module.h,57
|
137
|
-
#define GUARD_OBJECT2MODULE_HGUARD_OBJECT2MODULE_H4,53
|
138
|
-
|
139
|
-
texplay.c,410
|
140
|
-
Init_ctexplay() {Init_ctexplay29,843
|
141
|
-
m_init_TPPoint(int argc, VALUE * argv, VALUE self)m_init_TPPoint133,5456
|
142
|
-
m_init_EmptyImageStub(int argc, VALUE * argv, VALUE self)m_init_EmptyImageStub157,6066
|
143
|
-
m_EmptyImageStub_columns(VALUE self)m_EmptyImageStub_columns176,6583
|
144
|
-
m_EmptyImageStub_rows(VALUE self)m_EmptyImageStub_rows182,6672
|
145
|
-
m_EmptyImageStub_to_blob(VALUE self)m_EmptyImageStub_to_blob188,6758
|
146
|
-
|
147
|
-
texplay.h,2622
|
148
|
-
#define GUARD_TEXPLAY_HGUARD_TEXPLAY_H8,201
|
149
|
-
#define OOB_VAL OOB_VAL13,260
|
150
|
-
#define XMAX_OOB XMAX_OOB14,281
|
151
|
-
#define YMAX_OOB YMAX_OOB15,306
|
152
|
-
#define XMIN_OOB XMIN_OOB16,331
|
153
|
-
#define YMIN_OOB YMIN_OOB17,357
|
154
|
-
#define PI PI19,384
|
155
|
-
#define SWAP(SWAP22,426
|
156
|
-
#define ROUND(ROUND23,485
|
157
|
-
#define ARY_SIZE(ARY_SIZE24,519
|
158
|
-
#define SGN(SGN25,562
|
159
|
-
#define MAX(MAX26,597
|
160
|
-
#define MIN(MIN27,638
|
161
|
-
#define ABS(ABS28,680
|
162
|
-
typedef enum e_bool {e_bool31,732
|
163
|
-
false, truefalse32,754
|
164
|
-
false, truetrue32,754
|
165
|
-
} bool;bool33,770
|
166
|
-
typedef enum e_color {e_color35,779
|
167
|
-
red, green, blue, alphared36,802
|
168
|
-
red, green, blue, alphagreen36,802
|
169
|
-
red, green, blue, alphablue36,802
|
170
|
-
red, green, blue, alphaalpha36,802
|
171
|
-
} color_t;color_t37,830
|
172
|
-
typedef enum e_sync_mode {e_sync_mode39,842
|
173
|
-
lazy_sync, eager_sync, no_synclazy_sync40,869
|
174
|
-
lazy_sync, eager_sync, no_synceager_sync40,869
|
175
|
-
lazy_sync, eager_sync, no_syncno_sync40,869
|
176
|
-
} sync;sync41,904
|
177
|
-
typedef struct s_rgba {s_rgba44,927
|
178
|
-
float red, green, blue, alpha;red45,951
|
179
|
-
float red, green, blue, alpha;green45,951
|
180
|
-
float red, green, blue, alpha;blue45,951
|
181
|
-
float red, green, blue, alpha;alpha45,951
|
182
|
-
} rgba;rgba46,986
|
183
|
-
int width, height; width50,1036
|
184
|
-
int width, height; height50,1036
|
185
|
-
float top, left; top51,1063
|
186
|
-
float top, left; left51,1063
|
187
|
-
int tname;tname52,1088
|
188
|
-
float * td_array;td_array53,1103
|
189
|
-
int yincr, firstpixel;yincr54,1125
|
190
|
-
int yincr, firstpixel;firstpixel54,1125
|
191
|
-
int x_offset, y_offset;x_offset55,1152
|
192
|
-
int x_offset, y_offset;y_offset55,1152
|
193
|
-
VALUE image;image56,1180
|
194
|
-
} texture_info;texture_info57,1197
|
195
|
-
#define IMAGE_BOUNDS(IMAGE_BOUNDS61,1239
|
196
|
-
int xmin;xmin63,1303
|
197
|
-
int ymin;ymin64,1317
|
198
|
-
int xmax;xmax65,1331
|
199
|
-
int ymax;ymax66,1345
|
200
|
-
} image_bounds;image_bounds67,1359
|
201
|
-
typedef struct action_struct {action_struct69,1376
|
202
|
-
int xmin, ymin, xmax, ymax;xmin70,1407
|
203
|
-
int xmin, ymin, xmax, ymax;ymin70,1407
|
204
|
-
int xmin, ymin, xmax, ymax;xmax70,1407
|
205
|
-
int xmin, ymin, xmax, ymax;ymax70,1407
|
206
|
-
rgba color;color71,1439
|
207
|
-
sync sync_mode;sync_mode72,1455
|
208
|
-
VALUE color_control_proc;color_control_proc75,1504
|
209
|
-
bool has_color_control_proc;has_color_control_proc76,1534
|
210
|
-
int color_control_arity;color_control_arity77,1567
|
211
|
-
texture_info source_tex;source_tex80,1620
|
212
|
-
bool has_source_texture;has_source_texture81,1649
|
213
|
-
bool alpha_blend;alpha_blend84,1701
|
214
|
-
texture_info * tex;tex89,1880
|
215
|
-
VALUE hash_arg;hash_arg91,1909
|
216
|
-
} action_struct;action_struct92,1929
|
217
|
-
|
218
|
-
utils.c,4100
|
219
|
-
static const rgba not_a_color_v = { -1.0, -1.0, -1.0, -1.0 };not_a_color_v36,974
|
220
|
-
lowercase(char * string) lowercase40,1067
|
221
|
-
sym2string(VALUE sym) sym2string53,1228
|
222
|
-
string2sym(char * string) string2sym59,1298
|
223
|
-
is_a_hash(VALUE try_hash)is_a_hash65,1373
|
224
|
-
is_an_array(VALUE try_array)is_an_array71,1446
|
225
|
-
bool is_a_num(VALUE try_num)is_a_num76,1519
|
226
|
-
get_from_hash(VALUE hash, char * sym) get_from_hash82,1625
|
227
|
-
set_hash_value(VALUE hash, char * sym, VALUE val)set_hash_value91,1808
|
228
|
-
delete_from_hash(VALUE hash, char * sym)delete_from_hash101,2016
|
229
|
-
hash_value_is(VALUE hash, char * sym, VALUE val)hash_value_is111,2295
|
230
|
-
has_optional_hash_arg(VALUE hash, char * sym) has_optional_hash_arg122,2482
|
231
|
-
set_array_value(VALUE array, int index, VALUE val)set_array_value134,2710
|
232
|
-
get_from_array(VALUE array, int index) get_from_array144,2913
|
233
|
-
init_image_local(VALUE image)init_image_local154,3092
|
234
|
-
set_image_local(VALUE image, int name, VALUE val)set_image_local173,3553
|
235
|
-
get_image_local(VALUE image, int name)get_image_local183,3731
|
236
|
-
convert_image_local_color_to_rgba(VALUE image)convert_image_local_color_to_rgba252,5880
|
237
|
-
save_rgba_to_image_local_color(VALUE image, rgba color)save_rgba_to_image_local_color266,6319
|
238
|
-
create_image(VALUE window, int width, int height)create_image283,6877
|
239
|
-
not_a_color(rgba color1) not_a_color303,7451
|
240
|
-
is_a_color(rgba color1)is_a_color309,7516
|
241
|
-
cmp_color(rgba color1, rgba color2) cmp_color315,7583
|
242
|
-
color_copy(float * source, float * dest) color_copy323,7778
|
243
|
-
zero_color(float * tex) zero_color330,7908
|
244
|
-
get_pixel_color_from_chunk(float * chunk, int width, int height, int x, int y)get_pixel_color_from_chunk336,7982
|
245
|
-
get_pixel_color(texture_info * tex, int x, int y) get_pixel_color357,8429
|
246
|
-
get_pixel_data(texture_info * tex, int x, int y) get_pixel_data379,9024
|
247
|
-
set_pixel_color(rgba * pixel_color, texture_info * tex, int x, int y) set_pixel_color388,9204
|
248
|
-
find_color_from_string(char * try_color) find_color_from_string410,9769
|
249
|
-
convert_rgba_to_rb_color(rgba * pix)convert_rgba_to_rb_color471,12271
|
250
|
-
convert_rb_color_to_rgba(VALUE cval)convert_rb_color_to_rgba487,12747
|
251
|
-
check_mask(VALUE mask) check_mask530,13964
|
252
|
-
check_image(VALUE image) check_image548,14470
|
253
|
-
is_gosu_image(VALUE try_image)is_gosu_image555,14634
|
254
|
-
#define outcode outcode565,14808
|
255
|
-
const int RIGHT = 8; //1000RIGHT566,14828
|
256
|
-
const int TOP = 4; //0100TOP567,14857
|
257
|
-
const int LEFT = 2; //0010LEFT568,14886
|
258
|
-
const int BOTTOM = 1; //0001BOTTOM569,14915
|
259
|
-
ComputeOutCode (int x, int y, int xmin, int ymin, int xmax, int ymax)ComputeOutCode574,15083
|
260
|
-
cohen_sutherland_clip (int * x0, int * y0,int * x1, int * y1, int xmin, int ymin,cohen_sutherland_clip592,15643
|
261
|
-
constrain_boundaries(int * x0, int * y0, int * x1, int * y1, int width, int height) constrain_boundaries669,18664
|
262
|
-
bound_by_rect_and_inner(int x, int y, int x0, int y0, int x1, int y1, int inner) bound_by_rect_and_inner692,19249
|
263
|
-
bound_by_rect(int x, int y, int x0, int y0, int x1, int y1) bound_by_rect701,19577
|
264
|
-
calc_pixel_offset_for_action(action_struct * cur, texture_info * tex, int x, int y) calc_pixel_offset_for_action708,19783
|
265
|
-
calc_pixel_offset(texture_info * tex, int x, int y) calc_pixel_offset717,20019
|
266
|
-
max_quad_size(void)max_quad_size726,20217
|
267
|
-
check_for_texture_info(VALUE image) check_for_texture_info751,20843
|
268
|
-
allocate_texture(int width, int height)allocate_texture772,21587
|
269
|
-
sync_to_gl(int tex_name, int x_offset, int y_offset, int width, int height, void * sub)sync_to_gl787,21894
|
270
|
-
create_subtexture_and_sync_to_gl(image_bounds * img_bounds, texture_info * tex)create_subtexture_and_sync_to_gl799,22251
|
271
|
-
get_image_chunk(texture_info * tex, int xmin, int ymin, int xmax, int ymax)get_image_chunk823,23096
|
272
|
-
get_texture_info(VALUE image, texture_info * tex) get_texture_info852,23802
|
273
|
-
is_a_point(VALUE try_point)is_a_point897,25165
|
274
|
-
point_x(VALUE point)point_x907,25380
|
275
|
-
point_y(VALUE point)point_y913,25461
|
276
|
-
power(float base, int exp)power920,25598
|
277
|
-
fact(int n)fact940,25926
|
278
|
-
comb(int n, int k)comb948,26031
|
279
|
-
bernstein(int n, int k, float u)bernstein955,26132
|
280
|
-
|
281
|
-
utils.h,201
|
282
|
-
#define GUARD_UTILS_HGUARD_UTILS_H2,22
|
283
|
-
#define DRAW_OFFSET DRAW_OFFSET6,102
|
284
|
-
#define LAZY_BOUNDS LAZY_BOUNDS7,124
|
285
|
-
#define IMAGE_COLOR IMAGE_COLOR8,146
|
286
|
-
#define USER_DEFAULTS USER_DEFAULTS9,168
|
data/src/actions.obj
DELETED
Binary file
|
data/src/bindings.obj
DELETED
Binary file
|
data/src/cache.obj
DELETED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/src/ctexplay.so
DELETED
Binary file
|
data/src/gen_eval.obj
DELETED
Binary file
|
data/src/mkmf.log
DELETED
@@ -1,33 +0,0 @@
|
|
1
|
-
have_library: checking for main() in glut32.lib... -------------------- yes
|
2
|
-
|
3
|
-
"cl -nologo -Feconftest -Ic:/ruby191/include/ruby-1.9.1/i386-mswin32 -Ic:/ruby191/include/ruby-1.9.1/ruby/backward -Ic:/ruby191/include/ruby-1.9.1 -I. -Ic:/ruby191/include/ruby-1.9.1 -MD -Zi -O2b2xg- -G6 -Zm600 conftest.c msvcrt-ruby191-static.lib oldnames.lib user32.lib advapi32.lib shell32.lib ws2_32.lib -link -incremental:no -debug -opt:ref -opt:icf -libpath:"." -libpath:"c:/ruby191/lib" "
|
4
|
-
checked program was:
|
5
|
-
/* begin */
|
6
|
-
1: #include "ruby.h"
|
7
|
-
2:
|
8
|
-
3: #define WIN32_LEAN_AND_MEAN
|
9
|
-
4: #define WIN32
|
10
|
-
5: #include <winsock2.h>
|
11
|
-
6: #include <ws2tcpip.h>
|
12
|
-
7: #include <windows.h>
|
13
|
-
8: int main() {return 0;}
|
14
|
-
/* end */
|
15
|
-
|
16
|
-
"cl -nologo -Feconftest -Ic:/ruby191/include/ruby-1.9.1/i386-mswin32 -Ic:/ruby191/include/ruby-1.9.1/ruby/backward -Ic:/ruby191/include/ruby-1.9.1 -I. -Ic:/ruby191/include/ruby-1.9.1 -MD -Zi -O2b2xg- -G6 -Zm600 conftest.c msvcrt-ruby191-static.lib glut32.lib oldnames.lib user32.lib advapi32.lib shell32.lib ws2_32.lib -link -incremental:no -debug -opt:ref -opt:icf -libpath:"." -libpath:"c:/ruby191/lib" "
|
17
|
-
checked program was:
|
18
|
-
/* begin */
|
19
|
-
1: #include "ruby.h"
|
20
|
-
2:
|
21
|
-
3: #define WIN32_LEAN_AND_MEAN
|
22
|
-
4: #define WIN32
|
23
|
-
5: #include <winsock2.h>
|
24
|
-
6: #include <ws2tcpip.h>
|
25
|
-
7: #include <windows.h>
|
26
|
-
8:
|
27
|
-
9: /*top*/
|
28
|
-
10: int main() {return 0;}
|
29
|
-
11: int t() { void ((*volatile p)()); p = (void ((*)()))main; return 0; }
|
30
|
-
/* end */
|
31
|
-
|
32
|
-
--------------------
|
33
|
-
|
data/src/object2module.obj
DELETED
Binary file
|
data/src/texplay.obj
DELETED
Binary file
|
data/src/utils.obj
DELETED
Binary file
|
data/src/vc60.pdb
DELETED
Binary file
|