cleanup memory file
[vg.git] / vg_profiler.h
index ca79e18d0bf77df3da6421de40176b916ff83d5c..dedea02ca887fb9ef6ca9bbddf2b8cd510a68201 100644 (file)
@@ -73,7 +73,7 @@ VG_STATIC void vg_profile_drawn( struct vg_profile **profiles, u32 count,
    float sh = panel[3] / VG_PROFILE_SAMPLE_COUNT,
          sw = panel[2];
 
-   ui_fill_rect( panel, 0xa0000000 );
+   ui_fill( panel, 0xa0000000 );
 
    assert( count <= 8 );
    double avgs[8];
@@ -106,7 +106,7 @@ VG_STATIC void vg_profile_drawn( struct vg_profile **profiles, u32 count,
                            wx,            sh };
 
          u32 colour = colours[ (j+colour_offset) % vg_list_size(colours) ];
-         ui_fill_rect( block, colour );
+         ui_fill( block, colour );
 
          total += sample;
          avgs[j] += sample;
@@ -117,10 +117,10 @@ VG_STATIC void vg_profile_drawn( struct vg_profile **profiles, u32 count,
 
    snprintf( infbuf, 64, "accuracy: %.7fms", rate_mul );
    ui_text( (ui_rect){ panel[0] + 4,
-                       panel[1] + 0 * 14, 0, 0 }, 
+                       panel[1] + 0 * 14, 500, 30 }, 
                        infbuf,
                        1,
-                       k_text_align_left );
+                       k_ui_align_left, 0 );
 
    for( int i=0; i<count; i++ ){
       snprintf( infbuf, 64, "%.4fms %s", 
@@ -131,7 +131,7 @@ VG_STATIC void vg_profile_drawn( struct vg_profile **profiles, u32 count,
                           panel[1] + i * 14, 0, 0 }, 
                           infbuf,
                           1,
-                          k_text_align_left );
+                          k_ui_align_left, 0 );
    }
 }