summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@bitplanet.net>2012-04-04 14:52:35 -0400
committerKristian Høgsberg <krh@bitplanet.net>2012-04-04 14:52:35 -0400
commit1a36156972f14bb8d481abd71cb4210eb226a7ba (patch)
tree47075b2cda31354be7ad07bffeacd1b6f9554e36
parent80d27b7e06f673988d4a5dc73ca4dbcd5a02ce07 (diff)
screenshot.c: Fix up a few stylistic issues
-rw-r--r--clients/screenshot.c28
1 files changed, 8 insertions, 20 deletions
diff --git a/clients/screenshot.c b/clients/screenshot.c
index f340d33..086ddd9 100644
--- a/clients/screenshot.c
+++ b/clients/screenshot.c
@@ -82,8 +82,7 @@ display_handle_mode(void *data,
output = wl_output_get_user_data(wl_output);
- if (wl_output == output->output &&
- (flags & WL_OUTPUT_MODE_CURRENT)) {
+ if (wl_output == output->output && (flags & WL_OUTPUT_MODE_CURRENT)) {
output->width = width;
output->height = height;
}
@@ -172,7 +171,7 @@ int main(int argc, char *argv[])
struct wl_buffer *buffer;
void *data = NULL;
struct screenshooter_output *output, *next;
- int ss_area_width = 0, ss_area_height = 0, num_outputs = 0;
+ int width = 0, height = 0;
display = wl_display_connect(NULL);
if (display == NULL) {
@@ -190,31 +189,20 @@ int main(int argc, char *argv[])
}
wl_list_for_each(output, &output_list, link) {
-
- if (!num_outputs) {
- ss_area_width = output->width + output->offset_x;
- ss_area_height = output->height + output->offset_y;
- }
- else {
- ss_area_width = MAX(ss_area_width, output->offset_x + output->width);
- ss_area_height = MAX(ss_area_height, output->offset_y + output->height);
- }
- num_outputs++;
+ width = MAX(width, output->offset_x + output->width);
+ height = MAX(height, output->offset_y + output->height);
}
- buffer = create_shm_buffer(ss_area_width, ss_area_height, &data);
+ buffer = create_shm_buffer(width, height, &data);
- wl_list_for_each(output, &output_list, link) {
+ wl_list_for_each_safe(output, next, &output_list, link) {
screenshooter_shoot(screenshooter, output->output, buffer);
+ free(output);
}
wl_display_roundtrip(display);
- write_png(ss_area_width, ss_area_height, data);
-
- wl_list_for_each_safe(output, next, &output_list, link) {
- free(output);
- }
+ write_png(width, height, data);
return 0;
}