diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2011-04-19 23:49:56 +0200 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2011-04-19 23:49:56 +0200 |
commit | 781969994b5381ba4bed03beef217f9bde6e7c58 (patch) | |
tree | aede27c7532f0fbe82f03dc0c04c9316be510fd5 /gs/psi/zdevice.c | |
parent | 0b17959f31afe3baffbc328e7f92e88e634ad8b8 (diff) |
Indent with spaces and strip trailing whitespace.
Diffstat (limited to 'gs/psi/zdevice.c')
-rw-r--r-- | gs/psi/zdevice.c | 226 |
1 files changed, 113 insertions, 113 deletions
diff --git a/gs/psi/zdevice.c b/gs/psi/zdevice.c index d671d624a..8adeee436 100644 --- a/gs/psi/zdevice.c +++ b/gs/psi/zdevice.c @@ -1,6 +1,6 @@ /* Copyright (C) 2001-2006 Artifex Software, Inc. All Rights Reserved. - + This software is provided AS-IS with no warranty, either express or implied. @@ -44,9 +44,9 @@ zcopydevice2(i_ctx_t *i_ctx_p) check_read_type(op[-1], t_device); check_type(*op, t_boolean); code = gs_copydevice2(&new_dev, op[-1].value.pdevice, op->value.boolval, - imemory); + imemory); if (code < 0) - return code; + return code; new_dev->memory = imemory; make_tav(op - 1, t_device, icurrent_space | a_all, pdevice, new_dev); pop(1); @@ -63,8 +63,8 @@ zcurrentdevice(i_ctx_t *i_ctx_p) push(1); make_tav(op, t_device, - (mem == 0 ? avm_foreign : imemory_space(mem)) | a_all, - pdevice, dev); + (mem == 0 ? avm_foreign : imemory_space(mem)) | a_all, + pdevice, dev); return 0; } @@ -78,7 +78,7 @@ zdevicename(i_ctx_t *i_ctx_p) check_read_type(*op, t_device); dname = op->value.pdevice->dname; make_const_string(op, avm_foreign | a_readonly, strlen(dname), - (const byte *)dname); + (const byte *)dname); return 0; } @@ -90,7 +90,7 @@ zdoneshowpage(i_ctx_t *i_ctx_p) gx_device *tdev = (*dev_proc(dev, get_page_device)) (dev); if (tdev != 0) - tdev->ShowpageCount++; + tdev->ShowpageCount++; return 0; } @@ -106,18 +106,18 @@ zflushpage(i_ctx_t *i_ctx_p) static int zgetbitsrect(i_ctx_t *i_ctx_p) { /* - * alpha? is 0 for no alpha, -1 for alpha first, 1 for alpha last. - * std_depth is null for native pixels, depth/component for - * standard color space. - */ + * alpha? is 0 for no alpha, -1 for alpha first, 1 for alpha last. + * std_depth is null for native pixels, depth/component for + * standard color space. + */ os_ptr op = osp; gx_device *dev; gs_int_rect rect; gs_get_bits_params_t params; int w, h; gs_get_bits_options_t options = - GB_ALIGN_ANY | GB_RETURN_COPY | GB_OFFSET_0 | GB_RASTER_STANDARD | - GB_PACKING_CHUNKY; + GB_ALIGN_ANY | GB_RETURN_COPY | GB_OFFSET_0 | GB_RASTER_STANDARD | + GB_PACKING_CHUNKY; int depth; uint raster; int num_rows; @@ -139,48 +139,48 @@ zgetbitsrect(i_ctx_t *i_ctx_p) * which is not supported as a switch value in pre-ANSI C. */ if (op[-2].value.intval == -1) - options |= GB_ALPHA_FIRST; + options |= GB_ALPHA_FIRST; else if (op[-2].value.intval == 0) - options |= GB_ALPHA_NONE; + options |= GB_ALPHA_NONE; else if (op[-2].value.intval == 1) - options |= GB_ALPHA_LAST; + options |= GB_ALPHA_LAST; else - return_error(e_rangecheck); + return_error(e_rangecheck); if (r_has_type(op - 1, t_null)) { - options |= GB_COLORS_NATIVE; - depth = dev->color_info.depth; + options |= GB_COLORS_NATIVE; + depth = dev->color_info.depth; } else { - static const gs_get_bits_options_t depths[17] = { - 0, GB_DEPTH_1, GB_DEPTH_2, 0, GB_DEPTH_4, 0, 0, 0, GB_DEPTH_8, - 0, 0, 0, GB_DEPTH_12, 0, 0, 0, GB_DEPTH_16 - }; - gs_get_bits_options_t depth_option; - int std_depth; - - check_int_leu(op[-1], 16); - std_depth = (int)op[-1].value.intval; - depth_option = depths[std_depth]; - if (depth_option == 0) - return_error(e_rangecheck); - options |= depth_option | GB_COLORS_NATIVE; - depth = (dev->color_info.num_components + - (options & GB_ALPHA_NONE ? 0 : 1)) * std_depth; + static const gs_get_bits_options_t depths[17] = { + 0, GB_DEPTH_1, GB_DEPTH_2, 0, GB_DEPTH_4, 0, 0, 0, GB_DEPTH_8, + 0, 0, 0, GB_DEPTH_12, 0, 0, 0, GB_DEPTH_16 + }; + gs_get_bits_options_t depth_option; + int std_depth; + + check_int_leu(op[-1], 16); + std_depth = (int)op[-1].value.intval; + depth_option = depths[std_depth]; + if (depth_option == 0) + return_error(e_rangecheck); + options |= depth_option | GB_COLORS_NATIVE; + depth = (dev->color_info.num_components + + (options & GB_ALPHA_NONE ? 0 : 1)) * std_depth; } if (w == 0) - return_error(e_rangecheck); + return_error(e_rangecheck); raster = (w * depth + 7) >> 3; check_write_type(*op, t_string); num_rows = r_size(op) / raster; h = min(h, num_rows); if (h == 0) - return_error(e_rangecheck); + return_error(e_rangecheck); rect.q.x = rect.p.x + w; rect.q.y = rect.p.y + h; params.options = options; params.data[0] = op->value.bytes; code = (*dev_proc(dev, get_bits_rectangle))(dev, &rect, ¶ms, NULL); if (code < 0) - return code; + return code; make_int(op - 7, h); op[-6] = *op; r_set_size(op - 6, h * raster); @@ -197,14 +197,14 @@ zgetdevice(i_ctx_t *i_ctx_p) check_type(*op, t_integer); if (op->value.intval != (int)(op->value.intval)) - return_error(e_rangecheck); /* won't fit in an int */ + return_error(e_rangecheck); /* won't fit in an int */ dev = gs_getdevice((int)(op->value.intval)); if (dev == 0) /* index out of range */ - return_error(e_rangecheck); + return_error(e_rangecheck); /* Device prototypes are read-only; */ /* the cast is logically unnecessary. */ make_tav(op, t_device, avm_foreign | a_readonly, pdevice, - (gx_device *) dev); + (gx_device *) dev); return 0; } @@ -217,10 +217,10 @@ zgetdefaultdevice(i_ctx_t *i_ctx_p) dev = gs_getdefaultdevice(); if (dev == 0) /* couldn't find a default device */ - return_error(e_unknownerror); + return_error(e_unknownerror); push(1); make_tav(op, t_device, avm_foreign | a_readonly, pdevice, - (gx_device *) dev); + (gx_device *) dev); return 0; } @@ -241,15 +241,15 @@ zget_device_params(i_ctx_t *i_ctx_p, bool is_hardware) pop(1); stack_param_list_write(&list, &o_stack, &rkeys, iimemory); code = gs_get_device_or_hardware_params(dev, (gs_param_list *) & list, - is_hardware); + is_hardware); if (code < 0) { - /* We have to put back the top argument. */ - if (list.count > 0) - ref_stack_pop(&o_stack, list.count * 2 - 1); - else - ref_stack_push(&o_stack, 1); - *osp = rkeys; - return code; + /* We have to put back the top argument. */ + if (list.count > 0) + ref_stack_pop(&o_stack, list.count * 2 - 1); + else + ref_stack_push(&o_stack, 1); + *osp = rkeys; + return code; } pmark = ref_stack_index(&o_stack, list.count * 2); make_mark(pmark); @@ -284,39 +284,39 @@ zmakewordimagedevice(i_ctx_t *i_ctx_p) check_int_leu(op[-2], max_uint >> 1); /* height */ check_type(*op, t_boolean); if (r_has_type(op1, t_null)) { /* true color */ - colors = 0; - colors_size = -24; /* 24-bit true color */ + colors = 0; + colors_size = -24; /* 24-bit true color */ } else if (r_has_type(op1, t_integer)) { - /* - * We use if/else rather than switch because the value is long, - * which is not supported as a switch value in pre-ANSI C. - */ - if (op1->value.intval != 16 && op1->value.intval != 24 && - op1->value.intval != 32 - ) - return_error(e_rangecheck); - colors = 0; - colors_size = -op1->value.intval; + /* + * We use if/else rather than switch because the value is long, + * which is not supported as a switch value in pre-ANSI C. + */ + if (op1->value.intval != 16 && op1->value.intval != 24 && + op1->value.intval != 32 + ) + return_error(e_rangecheck); + colors = 0; + colors_size = -op1->value.intval; } else { - check_type(*op1, t_string); /* palette */ - if (r_size(op1) > 3 * 256) - return_error(e_rangecheck); - colors = op1->value.bytes; - colors_size = r_size(op1); + check_type(*op1, t_string); /* palette */ + if (r_size(op1) > 3 * 256) + return_error(e_rangecheck); + colors = op1->value.bytes; + colors_size = r_size(op1); } if ((code = read_matrix(imemory, op - 4, &imat)) < 0) - return code; + return code; /* Everything OK, create device */ code = gs_makewordimagedevice(&new_dev, &imat, - (int)op[-3].value.intval, - (int)op[-2].value.intval, - colors, colors_size, - op->value.boolval, true, imemory); + (int)op[-3].value.intval, + (int)op[-2].value.intval, + colors, colors_size, + op->value.boolval, true, imemory); if (code == 0) { - new_dev->memory = imemory; - make_tav(op - 4, t_device, imemory_space(iimemory) | a_all, - pdevice, new_dev); - pop(4); + new_dev->memory = imemory; + make_tav(op - 4, t_device, imemory_space(iimemory) | a_all, + pdevice, new_dev); + pop(4); } return code; } @@ -344,24 +344,24 @@ zoutputpage(i_ctx_t *i_ctx_p) check_type(op[-1], t_integer); check_type(*op, t_boolean); if (gs_debug[':']) { - gs_main_instance *minst = get_minst_from_memory((gs_memory_t *)i_ctx_p->memory.current->non_gc_memory); + gs_main_instance *minst = get_minst_from_memory((gs_memory_t *)i_ctx_p->memory.current->non_gc_memory); - print_resource_usage(minst, &(i_ctx_p->memory), "Outputpage start"); + print_resource_usage(minst, &(i_ctx_p->memory), "Outputpage start"); } #ifdef PSI_INCLUDED code = ps_end_page_top(imemory, - (int)op[-1].value.intval, op->value.boolval); + (int)op[-1].value.intval, op->value.boolval); #else code = gs_output_page(igs, (int)op[-1].value.intval, - op->value.boolval); + op->value.boolval); #endif if (code < 0) - return code; + return code; pop(2); if (gs_debug[':']) { - gs_main_instance *minst = get_minst_from_memory((gs_memory_t *)i_ctx_p->memory.current->non_gc_memory); + gs_main_instance *minst = get_minst_from_memory((gs_memory_t *)i_ctx_p->memory.current->non_gc_memory); - print_resource_usage(minst, &(i_ctx_p->memory), "Outputpage end"); + print_resource_usage(minst, &(i_ctx_p->memory), "Outputpage end"); } return 0; } @@ -390,19 +390,19 @@ zputdeviceparams(i_ctx_t *i_ctx_p) int code2; if (count == 0) - return_error(e_unmatchedmark); + return_error(e_unmatchedmark); prequire_all = ref_stack_index(&o_stack, count); ppolicy = ref_stack_index(&o_stack, count + 1); pdev = ref_stack_index(&o_stack, count + 2); if (pdev == 0) - return_error(e_stackunderflow); + return_error(e_stackunderflow); check_type_only(*prequire_all, t_boolean); check_write_type_only(*pdev, t_device); dev = pdev->value.pdevice; code = stack_param_list_read(&list, &o_stack, 0, ppolicy, - prequire_all->value.boolval, iimemory); + prequire_all->value.boolval, iimemory); if (code < 0) - return code; + return code; old_width = dev->width; old_height = dev->height; code = gs_putdeviceparams(dev, (gs_param_list *) & list); @@ -411,36 +411,36 @@ zputdeviceparams(i_ctx_t *i_ctx_p) if (code2 < 0) return code2; /* Check for names that were undefined or caused errors. */ for (dest = count - 2, i = 0; i < count >> 1; i++) - if (list.results[i] < 0) { - *ref_stack_index(&o_stack, dest) = - *ref_stack_index(&o_stack, count - (i << 1) - 2); - gs_errorname(i_ctx_p, list.results[i], - ref_stack_index(&o_stack, dest - 1)); - dest -= 2; - } + if (list.results[i] < 0) { + *ref_stack_index(&o_stack, dest) = + *ref_stack_index(&o_stack, count - (i << 1) - 2); + gs_errorname(i_ctx_p, list.results[i], + ref_stack_index(&o_stack, dest - 1)); + dest -= 2; + } iparam_list_release(&list); if (code < 0) { /* There were errors reported. */ - ref_stack_pop(&o_stack, dest + 1); - return 0; + ref_stack_pop(&o_stack, dest + 1); + return 0; } if (code > 0 || (code == 0 && (dev->width != old_width || dev->height != old_height))) { - /* - * The device was open and is now closed, or its dimensions have - * changed. If it was the current device, call setdevice to - * reinstall it and erase the page. - */ - /****** DOESN'T FIND ALL THE GSTATES THAT REFERENCE THE DEVICE. ******/ - if (gs_currentdevice(igs) == dev) { - bool was_open = dev->is_open; - - code = gs_setdevice_no_erase(igs, dev); - /* If the device wasn't closed, setdevice won't erase the page. */ - if (was_open && code >= 0) - code = 1; - } + /* + * The device was open and is now closed, or its dimensions have + * changed. If it was the current device, call setdevice to + * reinstall it and erase the page. + */ + /****** DOESN'T FIND ALL THE GSTATES THAT REFERENCE THE DEVICE. ******/ + if (gs_currentdevice(igs) == dev) { + bool was_open = dev->is_open; + + code = gs_setdevice_no_erase(igs, dev); + /* If the device wasn't closed, setdevice won't erase the page. */ + if (was_open && code >= 0) + code = 1; + } } if (code < 0) - return code; + return code; ref_stack_pop(&o_stack, count + 1); make_bool(osp, code); clear_pagedevice(istate); @@ -459,7 +459,7 @@ zsetdevice(i_ctx_t *i_ctx_p) check_write_type(*op, t_device); if (dev->LockSafetyParams) { /* do additional checking if locked */ if(op->value.pdevice != dev) /* don't allow a different device */ - return_error(e_invalidaccess); + return_error(e_invalidaccess); } /* If the device has a profile, this will get it to the manager. @@ -476,7 +476,7 @@ zsetdevice(i_ctx_t *i_ctx_p) code = gs_setdevice_no_erase(igs, op->value.pdevice); if (code < 0) - return code; + return code; #endif make_bool(op, code != 0); /* erase page if 1 */ |