Lines Matching refs:f32
44 static f32 pointing_scale = 200.0f ; // On-screen pointing scale
46 static f32 obj_interval = 0.20f ; // Interval between light-emitting points on the TV (in meter…
48 static f32 pos_play_radius = 0.00f ; // Set pos sensitivity
49 static f32 pos_sensitivity = 1.00f ;
50 static f32 hori_play_radius = 0.00f ; // Set horizon sensitivity
51 static f32 hori_sensitivity = 1.00f ;
52 static f32 dist_play_radius = 0.00f ; // Set dist sensitivity
53 static f32 dist_sensitivity = 1.00f ;
54 static f32 acc_play_radius = 0.00f ; // Set acc sensitivity
55 static f32 acc_sensitivity = 1.00f ;
57 static f32 repeat_delay_sec = 0.75f ; // Set key repeat
58 static f32 repeat_pulse_sec = 0.25f ;
63 f32 *vp ; // Pointer to variable
64 f32 min ; // Minimum value of variable
65 f32 max ; // Maximum value of variable
68 f32 v[3] ; // Amount of change in value of each of the digits
94 static f32 dpd_disp_scale = 140.0f ; // DPD object display scale
95 static f32 dpd_disp_ox = 165.0f ; // DPD object display position
96 static f32 dpd_disp_oy = 65.0f ;
261 f32 scale ; in draw_position()
287 static void draw_grid( f32 ox, f32 oy, f32 radius, GXColor clr ) in draw_grid()
289 f32 r = radius * 1.4f ; // Cross length in draw_grid()
300 static void draw_acc( f32 ox, f32 oy, f32 radius, f32 ax, f32 ay ) in draw_acc()
302 f32 px = ax * radius + ox ; in draw_acc()
303 f32 py = ay * radius + oy ; in draw_acc()
313 static void draw_acc2( f32 ox, f32 oy, f32 radius, f32 ax, f32 ay ) in draw_acc2()
315 f32 px = ax * radius + ox ; in draw_acc2()
316 f32 py = ay * radius + oy ; in draw_acc2()
323 static void draw_stick( f32 ox, f32 oy, f32 radius, f32 sx, f32 sy, GXColor clr, BOOL dashed ) in draw_stick()
325 f32 px = sx * radius + ox; in draw_stick()
326 f32 py = sy * radius + oy; in draw_stick()
342 f32 x1,y1, x2,y2 ; in draw_cursor()
360 f32 rx,ry, x1,y1, x2,y2 ; in draw_dpd_frame()
364 ry = rx * (f32)WPAD_DPD_IMG_RESO_WY / (f32)WPAD_DPD_IMG_RESO_WX ; in draw_dpd_frame()
390 f32 px,py, scale, ofx,ofy ; in draw_object()
401 scale = dpd_disp_scale / (f32)WPAD_DPD_IMG_RESO_WX ; in draw_object()
403 ofy = ofx * (f32)WPAD_DPD_IMG_RESO_WY / (f32)WPAD_DPD_IMG_RESO_WX ; in draw_object()
443 px = (f32)op->x * scale + ofx ; in draw_object()
444 py = (f32)op->y * scale + ofy ; in draw_object()
464 f32 x1,x2, y, r ; in draw_sample()