Home
last modified time | relevance | path

Searched refs:limit_h (Results 1 – 18 of 18) sorted by relevance

/dports/x11/xpra/xpra-4.3/xpra/codecs/
H A Dcodec_checks.py181 def get_encoder_max_size(encoder_module, encoding, limit_w=TEST_LIMIT_W, limit_h=TEST_LIMIT_H): argument
186 log("get_encoder_max_size%s", (encoder_module, encoding, limit_w, limit_h))
200 while h<=limit_h:
216 while v<max(limit_w, limit_h):
218 if tw>limit_w or th>limit_h:
236 def do_testencoding(encoder_module, encoding, W, H, full=False, limit_w=TEST_LIMIT_W, limit_h=TEST_… argument
280 if w>limit_w or h>limit_h:
307 while v<=min(limit_w, limit_h):
309 if tw>limit_w or th>limit_h:
312 … do_testcsc(colorspace_converter, tw, th, tw, th, False, test_cs_in, test_cs_out, limit_w, limit_h)
[all …]
/dports/graphics/feh/feh-3.5/src/
H A Dindex.c112 if (!opt.limit_w && !opt.limit_h) { in init_index_mode()
115 opt.limit_h = bg_h; in init_index_mode()
129 if (opt.limit_h) { in init_index_mode()
130 if (h > opt.limit_h) in init_index_mode()
136 opt.limit_w, opt.limit_h, filelist_len, w, h); in init_index_mode()
137 h = opt.limit_h; in init_index_mode()
139 } else if (opt.limit_h) { in init_index_mode()
141 h = opt.limit_h; in init_index_mode()
H A Dthumbnail.c523 if (!opt.limit_w && !opt.limit_h) { in feh_thumbnail_calculate_geometry()
526 opt.limit_h = td.bg_h; in feh_thumbnail_calculate_geometry()
540 if (opt.limit_h) { in feh_thumbnail_calculate_geometry()
541 if (td.h> opt.limit_h) in feh_thumbnail_calculate_geometry()
547 opt.limit_w, opt.limit_h, filelist_len, opt.limit_w, td.h); in feh_thumbnail_calculate_geometry()
548 td.h = opt.limit_h; in feh_thumbnail_calculate_geometry()
550 } else if (opt.limit_h) { in feh_thumbnail_calculate_geometry()
552 td.h = opt.limit_h; in feh_thumbnail_calculate_geometry()
H A Doptions.h113 int limit_h; member
H A Doptions.c495 opt.limit_h = atoi(optarg); in feh_parse_option_array()
/dports/emulators/libretro-vice/vice-libretro-5725415/vice/src/arch/sdl/
H A Dvideo_sdl1.c491 static int sdl_video_canvas_limit(unsigned int limit_w, unsigned int limit_h, unsigned int *w, unsi… in sdl_video_canvas_limit() argument
496 if ((*w > limit_w) || (*h > limit_h)) { in sdl_video_canvas_limit()
498 *h = MIN(*h, limit_h); in sdl_video_canvas_limit()
503 if ((*w != limit_w) || (*h != limit_h)) { in sdl_video_canvas_limit()
505 *h = limit_h; in sdl_video_canvas_limit()
564 unsigned int limit_h = (unsigned int)sdl_custom_height; in sdl_canvas_create() local
636 limit_h = new_height; in sdl_canvas_create()
640 limit_h = (unsigned int)sdl_window_height; in sdl_canvas_create()
642 limit_h = (unsigned int)sdl_window_height; in sdl_canvas_create()
692 if (sdl_video_canvas_limit(limit_w, limit_h, &actual_width, &actual_height, limit)) { in sdl_canvas_create()
[all …]
/dports/emulators/vice/vice-3.5/src/arch/sdl/
H A Dvideo_sdl1.c487 static int sdl_video_canvas_limit(unsigned int limit_w, unsigned int limit_h, unsigned int *w, unsi… in sdl_video_canvas_limit() argument
492 if ((*w > limit_w) || (*h > limit_h)) { in sdl_video_canvas_limit()
494 *h = MIN(*h, limit_h); in sdl_video_canvas_limit()
499 if ((*w != limit_w) || (*h != limit_h)) { in sdl_video_canvas_limit()
501 *h = limit_h; in sdl_video_canvas_limit()
560 unsigned int limit_h = (unsigned int)sdl_custom_height; in sdl_canvas_create() local
632 limit_h = new_height; in sdl_canvas_create()
636 limit_h = (unsigned int)sdl_window_height; in sdl_canvas_create()
638 limit_h = (unsigned int)sdl_window_height; in sdl_canvas_create()
688 if (sdl_video_canvas_limit(limit_w, limit_h, &actual_width, &actual_height, limit)) { in sdl_canvas_create()
[all …]
/dports/graphics/blender/blender-2.91.0/source/blender/blenkernel/intern/
H A Dimage_gpu.c538 int limit_h, in update_do_scale() argument
544 float yratio = limit_h / (float)full_h; in update_do_scale()
559 if (*y + *h > limit_h) { in update_do_scale()
595 int limit_h = smaller_power_of_2_limit(full_h); in gpu_texture_update_scaled() local
597 ibuf = update_do_scale(rect, rect_float, &x, &y, &w, &h, limit_w, limit_h, full_w, full_h); in gpu_texture_update_scaled()
/dports/emulators/fs-uae/fs-uae-3.1.35/src/od-fs/include/uae/
H A Duae.h150 int limit_h; member
/dports/emulators/fs-uae/fs-uae-3.1.35/src/od-fs/
H A Dvideo.cpp171 g_renderdata.limit_h = g_picasso_height; in render_frame()
216 g_renderdata.limit_h = ch; in render_frame()
/dports/devel/godot2-tools/godot-2.1.6-stable/core/math/
H A Dgeometry.cpp1028 int limit_h = 0; in make_atlas() local
1048 limit_h = end_h; in make_atlas()
1061 if (ofs == 0 || end_h > limit_h) //while h limit not reched, keep stacking in make_atlas()
/dports/devel/godot2/godot-2.1.6-stable/core/math/
H A Dgeometry.cpp1028 int limit_h = 0; in make_atlas() local
1048 limit_h = end_h; in make_atlas()
1061 if (ofs == 0 || end_h > limit_h) //while h limit not reched, keep stacking in make_atlas()
/dports/misc/rump/buildrump.sh-b914579/src/sys/dev/pci/
H A Dpci_subr.c3576 uint32_t base_h, limit_h; in pci_conf_print_type1() local
3623 limit_h = (rval >> 16) & 0xffff; in pci_conf_print_type1()
3625 printf(" limit upper 16 bits register: 0x%04x\n", limit_h); in pci_conf_print_type1()
3629 limit |= limit_h << 16; in pci_conf_print_type1()
3663 limit_h = regs[o2i(PCI_BRIDGE_PREFETCHLIMIT32_REG)]; in pci_conf_print_type1()
3667 limit_h); in pci_conf_print_type1()
3679 plimit |= (uint64_t)limit_h << 32; in pci_conf_print_type1()
/dports/devel/godot/godot-3.2.3-stable/core/math/
H A Dgeometry.cpp1016 int limit_h = 0; in make_atlas() local
1036 limit_h = end_h; in make_atlas()
1049 if (ofs == 0 || end_h > limit_h) // While h limit not reached, keep stacking. in make_atlas()
/dports/devel/godot-tools/godot-3.2.3-stable/core/math/
H A Dgeometry.cpp1016 int limit_h = 0; in make_atlas() local
1036 limit_h = end_h; in make_atlas()
1049 if (ofs == 0 || end_h > limit_h) // While h limit not reached, keep stacking. in make_atlas()
/dports/emulators/fs-uae/fs-uae-3.1.35/src/fs-uae/
H A Dvideo.c465 int ch = rd->limit_h; in render_screen()
/dports/x11/xpra/xpra-4.3/xpra/codecs/csc_libyuv/
H A Dcolorspace_converter.pyx491 … mw, mh = get_csc_max_size(colorspace_converter, in_csc, out_csc, limit_w=32768, limit_h=32768)
/dports/x11/xpra/xpra-4.3/xpra/codecs/vpx/
H A Dencoder.pyx777 maxw, maxh = get_encoder_max_size(encoder, encoding, limit_w=8192, limit_h=8192)