search for: update_row

Displaying 3 results from an estimated 3 matches for "update_row".

Did you mean: update_ref
2008 Apr 09
13
submitting an ajax form via javascript not rendering
...ction to submit - doesn''t work. There is a submit button at the end of the form - works there is a delete image that removed the row when clicked - works I have also tried the onblur event just as this.form.submit(); Either case, I get the following which looks OK, just not running. try { update_row(16, "12345678", 24, 14, 100, 75); } catch (e) { alert(''RJS error:\n\n'' + e.toString()); alert(''update_row(16, \"12345678\", 24, 14, 100, 75);''); throw e } In my controller I''ve tried using page.call and just tried a page.insert as we...
2009 Mar 02
0
[PATCH 4 of 13] DisplayState interface change
...inesize = linesize; - if (allocated) { - free(ds->data); - allocated = 0; - } - } - vs->old_data = qemu_realloc(vs->old_data, h * ds->linesize); - vs->dirty_row = qemu_realloc(vs->dirty_row, h * sizeof(vs->dirty_row[0])); - vs->update_row = qemu_realloc(vs->update_row, h * sizeof(vs->dirty_row[0])); + vs->old_data = qemu_realloc(vs->old_data, ds_get_height(ds) * ds_get_linesize(ds)); + vs->dirty_row = qemu_realloc(vs->dirty_row, ds_get_height(ds) * sizeof(vs->dirty_row[0])); + vs->update_row = qemu_r...
2009 Mar 02
0
[PATCH 5 of 13] exploiting the new interface in vnc.c
...+ { \ + c += v & 1; \ + } \ +} typedef struct Buffer { @@ -162,8 +168,6 @@ int lsock; int csock; DisplayState *ds; - int width; - int height; uint64_t *dirty_row; /* screen regions which are possibly dirty */ int dirty_pixel_shift; uint64_t *update_row; /* outstanding updates */ @@ -173,7 +177,6 @@ int update_requested; /* the client requested an update */ uint8_t *old_data; - int depth; /* internal VNC frame buffer byte per pixel */ int has_resize; int has_hextile; int has_pointer_type_change; @@ -214,10 +217,...