Lines Matching refs:f32

49 static f32	pointing_scale = 200.0f ;	// Screen pointing scale
51 static f32 obj_interval = 0.20f ; // TV side light emitting point placement interval (in meters)
53 static f32 pos_play_radius = 0.00f ; // 'pos' sensitivity setting
54 static f32 pos_sensitivity = 1.00f ;
55 static f32 hori_play_radius = 0.00f ; // 'horizon' sensitivity setting
56 static f32 hori_sensitivity = 1.00f ;
57 static f32 dist_play_radius = 0.00f ; // 'dist' sensitivity setting
58 static f32 dist_sensitivity = 1.00f ;
59 static f32 acc_play_radius = 0.00f ; // 'acc' sensitivity setting
60 static f32 acc_sensitivity = 1.00f ;
62 static f32 repeat_delay_sec = 0.75f ; // Key repeat settings
63 static f32 repeat_pulse_sec = 0.25f ;
68 f32 *vp ; // Pointer to the variable
69 f32 min ; // Variable minimum value
70 f32 max ; // Variable maximum value
73 f32 v[3] ; // Value change for each digit
99 static f32 dpd_disp_scale = 140.0f ; // DPD object display scale
100 static f32 dpd_disp_ox = 165.0f ; // DPD object display position
101 static f32 dpd_disp_oy = 65.0f ;
292 f32 scale ; in draw_position()
318 static void draw_grid( f32 ox, f32 oy, f32 radius, GXColor clr ) in draw_grid()
320 f32 r = radius * 1.4f ; // Cross length in draw_grid()
331 static void draw_acc( f32 ox, f32 oy, f32 radius, f32 ax, f32 ay ) in draw_acc()
333 f32 px = ax * radius + ox ; in draw_acc()
334 f32 py = ay * radius + oy ; in draw_acc()
344 static void draw_acc2( f32 ox, f32 oy, f32 radius, f32 ax, f32 ay ) in draw_acc2()
346 f32 px = ax * radius + ox ; in draw_acc2()
347 f32 py = ay * radius + oy ; in draw_acc2()
354 static void draw_stick( f32 ox, f32 oy, f32 radius, f32 sx, f32 sy, GXColor clr, BOOL dashed ) in draw_stick()
356 f32 px = sx * radius + ox; in draw_stick()
357 f32 py = sy * radius + oy; in draw_stick()
373 f32 x1,y1, x2,y2 ; in draw_cursor()
391 f32 rx,ry, x1,y1, x2,y2 ; in draw_dpd_frame()
395 ry = rx * (f32)WPAD_DPD_IMG_RESO_WY / (f32)WPAD_DPD_IMG_RESO_WX ; in draw_dpd_frame()
421 f32 px,py, scale, ofx,ofy ; in draw_object()
430 scale = dpd_disp_scale / (f32)WPAD_DPD_IMG_RESO_WX ; in draw_object()
432 ofy = ofx * (f32)WPAD_DPD_IMG_RESO_WY / (f32)WPAD_DPD_IMG_RESO_WX ; in draw_object()
478 px = (f32)op->x * scale + ofx ; in draw_object()
479 py = (f32)op->y * scale + ofy ; in draw_object()
499 f32 x1,x2, y, r ; in draw_sample()