Home
last modified time | relevance | path

Searched refs:rect_h (Results 1 – 25 of 120) sorted by relevance

12345

/dports/graphics/dia/dia-0.97.3/app/
H A Dcolor_area.c86 gint rect_w, rect_h; in color_area_target() local
92 rect_h = height * 0.65; in color_area_target()
96 y > 0 && y < rect_h) in color_area_target()
102 y > rect_h && y < height) in color_area_target()
117 gint rect_w, rect_h; in color_area_draw() local
139 rect_h = height * 0.65; in color_area_draw()
156 (width - rect_w), (height - rect_h), rect_w, rect_h); in color_area_draw()
158 (width - rect_w), (height - rect_h), rect_w, rect_h); in color_area_draw()
165 rect_w, rect_h); in color_area_draw()
175 0, 0, rect_w, rect_h); in color_area_draw()
[all …]
/dports/games/gbrainy/gbrainy-2.4.3/src/Games/Memory/
H A DMemoryFaces.cs35 private double rect_w, rect_h; field in gbrainy.Games.Memory.MemoryFaces
80 rect_h = 0.65 / rows; in Initialize()
108 …HorizontalContainer container = new HorizontalContainer (start_x_ans, y, columns * rect_w, rect_h); in Initialize()
115 y += rect_h; in Initialize()
117 container = new HorizontalContainer (start_x_ans, y, columns * rect_w, rect_h); in Initialize()
121 DrawableArea drawable_area = new DrawableArea (rect_w, rect_h); in Initialize()
143 e.Context.DrawTextCentered (rect_w / 2, rect_h / 2, (n).ToString ()); in Initialize()
186 y += rect_h; in DrawAllFigures()
200 space_y = (rect_h - figure_size) / 2; in DrawFigure()
232 gr.Rectangle (x + column * rect_w, y + row * rect_h, rect_w, rect_h); in DrawGrid()
H A DMemoryColouredFigures.cs39 private double rect_h; field in gbrainy.Games.Memory.MemoryColouredFigures
79 rect_h = 0.3 / columns; in Initialize()
184 gr.Rectangle (x + row * rect_w, y + column * rect_h, rect_w, rect_h); in DrawSquare()
185 gr.FillGradient (x + row * rect_w, y + column * rect_h, rect_w, rect_h, c); in DrawSquare()
191 gr.Rectangle (x + row * rect_w, y + column * rect_h, rect_w, rect_h); in DrawSquare()
H A DMemoryFiguresNumbers.cs30 private double rect_w, rect_h; field in gbrainy.Games.Memory.MemoryFiguresNumbers
62 rect_h = 0.3 / columns; in Initialize()
161 gr.Rectangle (x + row * rect_w, y + column * rect_h, rect_w, rect_h); in DrawSquare()
163 gr.DrawTextCentered (x + (rect_w / 2) + column * rect_w, y + (rect_h / 2) + row * rect_h, in DrawSquare()
/dports/japanese/scim-anthy/scim-anthy-1.2.7/src/
H A Dscim_anthy_color_button.cpp213 gint rect_w, rect_h; in scim_anthy_color_button_expose() local
241 rect_h = height - swap_h - 2; in scim_anthy_color_button_expose()
244 if (rect_h > (height * 3 / 4)) { in scim_anthy_color_button_expose()
250 button->rect_height = rect_h; in scim_anthy_color_button_expose()
259 rect_w, rect_h, in scim_anthy_color_button_expose()
266 (height - rect_h), in scim_anthy_color_button_expose()
267 rect_w, rect_h); in scim_anthy_color_button_expose()
275 rect_w, rect_h, in scim_anthy_color_button_expose()
282 rect_w, rect_h); in scim_anthy_color_button_expose()
295 gint rect_h = button->rect_height; in scim_anthy_color_button_target() local
[all …]
/dports/games/gbrainy/gbrainy-2.4.3/src/Games/Logic/
H A DPuzzleGridNumbers.cs129 double rect_h = DrawAreaHeight / columns; in Draw()
135 gr.Rectangle (DrawAreaX + row * rect_w, DrawAreaY + column * rect_h, rect_w, rect_h); in Draw()
139 DrawAreaY + row * rect_h + rect_h / 2, in Draw()
146 DrawAreaY + 3 * rect_h + rect_h / 2, in Draw()
H A DPuzzleRelatedNumbers.cs201 double rect_h = DrawAreaHeight / rows; in Draw()
212 gr.Rectangle (DrawAreaX + column * rect_w, DrawAreaY + row * rect_h, rect_w, rect_h); in Draw()
229 DrawAreaY + (row * rect_h) + rect_h / 2, in Draw()
H A DPuzzleSquares.cs74 double rect_h = DrawAreaHeight / columns; in Draw()
80 gr.Rectangle (DrawAreaX + row * rect_w, DrawAreaY + column * rect_h, rect_w, rect_h); in Draw()
/dports/games/opensonic/opensnc-src-0.1.4/src/core/
H A Dsprite.c220 info->rect_h = 0; in spriteinfo_new()
284 if(spr->frame_w > spr->rect_w || spr->frame_h > spr->rect_h) { in validate_sprite()
285 …'t be larger than source_rect size (%d,%d)", spr->frame_w, spr->frame_h, spr->rect_w, spr->rect_h); in validate_sprite()
287 spr->frame_h = min(spr->frame_h, spr->rect_h); in validate_sprite()
291 if(spr->rect_w % spr->frame_w > 0 || spr->rect_h % spr->frame_h > 0) { in validate_sprite()
292 …t size should be a multiple of frame_size.", spr->frame_w, spr->frame_h, spr->rect_w, spr->rect_h); in validate_sprite()
294 …spr->rect_h = (spr->rect_h % spr->frame_h > 0) ? (spr->rect_h - spr->rect_h % spr->frame_h + spr->… in validate_sprite()
295 logfile_message("Adjusting source_rect size to (%d,%d)", spr->rect_w, spr->rect_h); in validate_sprite()
301 n = (spr->rect_w / spr->frame_w) * (spr->rect_h / spr->frame_h); in validate_sprite()
334 spr->frame_count = (spr->rect_w / spr->frame_w) * (spr->rect_h / spr->frame_h); in load_sprite_images()
[all …]
/dports/graphics/gimp-app/gimp-2.10.30/app/widgets/
H A Dgimpfgbgview.c161 gint rect_w, rect_h; in gimp_fg_bg_view_expose() local
177 rect_h = allocation.height * 3 / 4; in gimp_fg_bg_view_expose()
200 allocation.height - rect_h + 1, in gimp_fg_bg_view_expose()
202 rect_h - 2); in gimp_fg_bg_view_expose()
210 allocation.y + allocation.height - rect_h, in gimp_fg_bg_view_expose()
211 rect_w, rect_h); in gimp_fg_bg_view_expose()
229 cairo_rectangle (cr, 1, 1, rect_w - 2, rect_h - 2); in gimp_fg_bg_view_expose()
236 allocation.x, allocation.y, rect_w, rect_h); in gimp_fg_bg_view_expose()
H A Dgimpfgbgeditor.c278 gint rect_w, rect_h; in gimp_fg_bg_editor_expose() local
333 rect_h = height - MAX (default_h, swap_h) - 2; in gimp_fg_bg_editor_expose()
336 if (rect_h > (height * 3 / 4)) in gimp_fg_bg_editor_expose()
337 rect_w = MAX (rect_w - (rect_h - ((height * 3 / 4))), in gimp_fg_bg_editor_expose()
341 editor->rect_height = rect_h; in gimp_fg_bg_editor_expose()
352 rect_w, rect_h, in gimp_fg_bg_editor_expose()
378 gint rect_h = editor->rect_height; in gimp_fg_bg_editor_target() local
385 if (x > 0 && x < rect_w && y > 0 && y < rect_h) in gimp_fg_bg_editor_target()
390 y > (height - rect_h) && y < height) in gimp_fg_bg_editor_target()
395 y > rect_h && y < height) in gimp_fg_bg_editor_target()
[all …]
/dports/games/gigalomania/gigalomaniasrc/
H A Dpanel.cpp279 int rect_h = (int)(( 2 * gap_y + h * total_lines + in drawPopups() local
287 if( new_y + rect_h >= default_height_c * game_g->getScaleHeight() ) { in drawPopups()
288 new_y = (int)(panel->getTop() * game_g->getScaleHeight() - rect_h); in drawPopups()
293 else if( rect_y + rect_h >= default_height_c * game_g->getScaleHeight() ) { in drawPopups()
294 int new_y = (int)(( default_height_c - 1 ) * game_g->getScaleHeight() - rect_h); in drawPopups()
301 rect_h -= 2; in drawPopups()
307 Image *fill_rect = Image::createBlankImage(rect_w, rect_h, 24); in drawPopups()
308 …fill_rect->fillRect(0, 0, rect_w, rect_h, panel_background_r, panel_background_g, panel_background… in drawPopups()
342 int rect_h = (int)(game_g->getScaleHeight()*this->h); in drawBackground() local
344 Image *fill_rect = Image::createBlankImage(rect_w, rect_h, 24); in drawBackground()
[all …]
/dports/net/gstreamer1-plugins-srtp/gst-plugins-bad-1.16.2/gst/librfb/
H A Drfbdecoder.c39 gint start_y, gint rect_w, gint rect_h);
857 gint rect_w, gint rect_h) in rfb_decoder_raw_encoding() argument
864 size = rect_h * raw_line_size; in rfb_decoder_raw_encoding()
876 while (rect_h--) { in rfb_decoder_raw_encoding()
887 gint rect_w, gint rect_h) in rfb_decoder_copyrect_encoding() argument
910 while (rect_h--) { in rfb_decoder_copyrect_encoding()
940 gint rect_w, gint rect_h) in rfb_decoder_rre_encoding() argument
976 gint rect_w, gint rect_h) in rfb_decoder_corre_encoding() argument
1012 gint rect_w, gint rect_h) in rfb_decoder_hextile_encoding() argument
1022 y_end = rect_h % 16; in rfb_decoder_hextile_encoding()
[all …]
/dports/multimedia/gstreamer1-plugins-x265/gst-plugins-bad-1.16.2/gst/librfb/
H A Drfbdecoder.c39 gint start_y, gint rect_w, gint rect_h);
857 gint rect_w, gint rect_h) in rfb_decoder_raw_encoding() argument
864 size = rect_h * raw_line_size; in rfb_decoder_raw_encoding()
876 while (rect_h--) { in rfb_decoder_raw_encoding()
887 gint rect_w, gint rect_h) in rfb_decoder_copyrect_encoding() argument
910 while (rect_h--) { in rfb_decoder_copyrect_encoding()
940 gint rect_w, gint rect_h) in rfb_decoder_rre_encoding() argument
976 gint rect_w, gint rect_h) in rfb_decoder_corre_encoding() argument
1012 gint rect_w, gint rect_h) in rfb_decoder_hextile_encoding() argument
1022 y_end = rect_h % 16; in rfb_decoder_hextile_encoding()
[all …]
/dports/multimedia/gstreamer1-plugins-openh264/gst-plugins-bad-1.16.2/gst/librfb/
H A Drfbdecoder.c39 gint start_y, gint rect_w, gint rect_h);
857 gint rect_w, gint rect_h) in rfb_decoder_raw_encoding() argument
864 size = rect_h * raw_line_size; in rfb_decoder_raw_encoding()
876 while (rect_h--) { in rfb_decoder_raw_encoding()
887 gint rect_w, gint rect_h) in rfb_decoder_copyrect_encoding() argument
910 while (rect_h--) { in rfb_decoder_copyrect_encoding()
940 gint rect_w, gint rect_h) in rfb_decoder_rre_encoding() argument
976 gint rect_w, gint rect_h) in rfb_decoder_corre_encoding() argument
1012 gint rect_w, gint rect_h) in rfb_decoder_hextile_encoding() argument
1022 y_end = rect_h % 16; in rfb_decoder_hextile_encoding()
[all …]
/dports/multimedia/gstreamer1-plugins-rtmp/gst-plugins-bad-1.16.2/gst/librfb/
H A Drfbdecoder.c39 gint start_y, gint rect_w, gint rect_h);
857 gint rect_w, gint rect_h) in rfb_decoder_raw_encoding() argument
864 size = rect_h * raw_line_size; in rfb_decoder_raw_encoding()
876 while (rect_h--) { in rfb_decoder_raw_encoding()
887 gint rect_w, gint rect_h) in rfb_decoder_copyrect_encoding() argument
910 while (rect_h--) { in rfb_decoder_copyrect_encoding()
940 gint rect_w, gint rect_h) in rfb_decoder_rre_encoding() argument
976 gint rect_w, gint rect_h) in rfb_decoder_corre_encoding() argument
1012 gint rect_w, gint rect_h) in rfb_decoder_hextile_encoding() argument
1022 y_end = rect_h % 16; in rfb_decoder_hextile_encoding()
[all …]
/dports/multimedia/gstreamer1-plugins-msdk/gst-plugins-bad-1.16.2/gst/librfb/
H A Drfbdecoder.c39 gint start_y, gint rect_w, gint rect_h);
857 gint rect_w, gint rect_h) in rfb_decoder_raw_encoding() argument
864 size = rect_h * raw_line_size; in rfb_decoder_raw_encoding()
876 while (rect_h--) { in rfb_decoder_raw_encoding()
887 gint rect_w, gint rect_h) in rfb_decoder_copyrect_encoding() argument
910 while (rect_h--) { in rfb_decoder_copyrect_encoding()
940 gint rect_w, gint rect_h) in rfb_decoder_rre_encoding() argument
976 gint rect_w, gint rect_h) in rfb_decoder_corre_encoding() argument
1012 gint rect_w, gint rect_h) in rfb_decoder_hextile_encoding() argument
1022 y_end = rect_h % 16; in rfb_decoder_hextile_encoding()
[all …]
/dports/multimedia/gstreamer1-plugins-mplex/gst-plugins-bad-1.16.2/gst/librfb/
H A Drfbdecoder.c39 gint start_y, gint rect_w, gint rect_h);
857 gint rect_w, gint rect_h) in rfb_decoder_raw_encoding() argument
864 size = rect_h * raw_line_size; in rfb_decoder_raw_encoding()
876 while (rect_h--) { in rfb_decoder_raw_encoding()
887 gint rect_w, gint rect_h) in rfb_decoder_copyrect_encoding() argument
910 while (rect_h--) { in rfb_decoder_copyrect_encoding()
940 gint rect_w, gint rect_h) in rfb_decoder_rre_encoding() argument
976 gint rect_w, gint rect_h) in rfb_decoder_corre_encoding() argument
1012 gint rect_w, gint rect_h) in rfb_decoder_hextile_encoding() argument
1022 y_end = rect_h % 16; in rfb_decoder_hextile_encoding()
[all …]
/dports/multimedia/gstreamer1-plugins-resindvd/gst-plugins-bad-1.16.2/gst/librfb/
H A Drfbdecoder.c39 gint start_y, gint rect_w, gint rect_h);
857 gint rect_w, gint rect_h) in rfb_decoder_raw_encoding() argument
864 size = rect_h * raw_line_size; in rfb_decoder_raw_encoding()
876 while (rect_h--) { in rfb_decoder_raw_encoding()
887 gint rect_w, gint rect_h) in rfb_decoder_copyrect_encoding() argument
910 while (rect_h--) { in rfb_decoder_copyrect_encoding()
940 gint rect_w, gint rect_h) in rfb_decoder_rre_encoding() argument
976 gint rect_w, gint rect_h) in rfb_decoder_corre_encoding() argument
1012 gint rect_w, gint rect_h) in rfb_decoder_hextile_encoding() argument
1022 y_end = rect_h % 16; in rfb_decoder_hextile_encoding()
[all …]
/dports/multimedia/gstreamer1-plugins-dts/gst-plugins-bad-1.16.2/gst/librfb/
H A Drfbdecoder.c39 gint start_y, gint rect_w, gint rect_h);
857 gint rect_w, gint rect_h) in rfb_decoder_raw_encoding() argument
864 size = rect_h * raw_line_size; in rfb_decoder_raw_encoding()
876 while (rect_h--) { in rfb_decoder_raw_encoding()
887 gint rect_w, gint rect_h) in rfb_decoder_copyrect_encoding() argument
910 while (rect_h--) { in rfb_decoder_copyrect_encoding()
940 gint rect_w, gint rect_h) in rfb_decoder_rre_encoding() argument
976 gint rect_w, gint rect_h) in rfb_decoder_corre_encoding() argument
1012 gint rect_w, gint rect_h) in rfb_decoder_hextile_encoding() argument
1022 y_end = rect_h % 16; in rfb_decoder_hextile_encoding()
[all …]
/dports/multimedia/gstreamer1-plugins-dash/gst-plugins-bad-1.16.2/gst/librfb/
H A Drfbdecoder.c39 gint start_y, gint rect_w, gint rect_h);
857 gint rect_w, gint rect_h) in rfb_decoder_raw_encoding() argument
864 size = rect_h * raw_line_size; in rfb_decoder_raw_encoding()
876 while (rect_h--) { in rfb_decoder_raw_encoding()
887 gint rect_w, gint rect_h) in rfb_decoder_copyrect_encoding() argument
910 while (rect_h--) { in rfb_decoder_copyrect_encoding()
940 gint rect_w, gint rect_h) in rfb_decoder_rre_encoding() argument
976 gint rect_w, gint rect_h) in rfb_decoder_corre_encoding() argument
1012 gint rect_w, gint rect_h) in rfb_decoder_hextile_encoding() argument
1022 y_end = rect_h % 16; in rfb_decoder_hextile_encoding()
[all …]
/dports/multimedia/gstreamer1-plugins-aom/gst-plugins-bad-1.16.2/gst/librfb/
H A Drfbdecoder.c39 gint start_y, gint rect_w, gint rect_h);
857 gint rect_w, gint rect_h) in rfb_decoder_raw_encoding() argument
864 size = rect_h * raw_line_size; in rfb_decoder_raw_encoding()
876 while (rect_h--) { in rfb_decoder_raw_encoding()
887 gint rect_w, gint rect_h) in rfb_decoder_copyrect_encoding() argument
910 while (rect_h--) { in rfb_decoder_copyrect_encoding()
940 gint rect_w, gint rect_h) in rfb_decoder_rre_encoding() argument
976 gint rect_w, gint rect_h) in rfb_decoder_corre_encoding() argument
1012 gint rect_w, gint rect_h) in rfb_decoder_hextile_encoding() argument
1022 y_end = rect_h % 16; in rfb_decoder_hextile_encoding()
[all …]
/dports/multimedia/gstreamer1-plugins-assrender/gst-plugins-bad-1.16.2/gst/librfb/
H A Drfbdecoder.c39 gint start_y, gint rect_w, gint rect_h);
857 gint rect_w, gint rect_h) in rfb_decoder_raw_encoding() argument
864 size = rect_h * raw_line_size; in rfb_decoder_raw_encoding()
876 while (rect_h--) { in rfb_decoder_raw_encoding()
887 gint rect_w, gint rect_h) in rfb_decoder_copyrect_encoding() argument
910 while (rect_h--) { in rfb_decoder_copyrect_encoding()
940 gint rect_w, gint rect_h) in rfb_decoder_rre_encoding() argument
976 gint rect_w, gint rect_h) in rfb_decoder_corre_encoding() argument
1012 gint rect_w, gint rect_h) in rfb_decoder_hextile_encoding() argument
1022 y_end = rect_h % 16; in rfb_decoder_hextile_encoding()
[all …]
/dports/multimedia/gstreamer1-plugins-bad/gst-plugins-bad-1.16.2/gst/librfb/
H A Drfbdecoder.c39 gint start_y, gint rect_w, gint rect_h);
857 gint rect_w, gint rect_h) in rfb_decoder_raw_encoding() argument
864 size = rect_h * raw_line_size; in rfb_decoder_raw_encoding()
876 while (rect_h--) { in rfb_decoder_raw_encoding()
887 gint rect_w, gint rect_h) in rfb_decoder_copyrect_encoding() argument
910 while (rect_h--) { in rfb_decoder_copyrect_encoding()
940 gint rect_w, gint rect_h) in rfb_decoder_rre_encoding() argument
976 gint rect_w, gint rect_h) in rfb_decoder_corre_encoding() argument
1012 gint rect_w, gint rect_h) in rfb_decoder_hextile_encoding() argument
1022 y_end = rect_h % 16; in rfb_decoder_hextile_encoding()
[all …]
/dports/multimedia/gstreamer1-plugins-libde265/gst-plugins-bad-1.16.2/gst/librfb/
H A Drfbdecoder.c39 gint start_y, gint rect_w, gint rect_h);
857 gint rect_w, gint rect_h) in rfb_decoder_raw_encoding() argument
864 size = rect_h * raw_line_size; in rfb_decoder_raw_encoding()
876 while (rect_h--) { in rfb_decoder_raw_encoding()
887 gint rect_w, gint rect_h) in rfb_decoder_copyrect_encoding() argument
910 while (rect_h--) { in rfb_decoder_copyrect_encoding()
940 gint rect_w, gint rect_h) in rfb_decoder_rre_encoding() argument
976 gint rect_w, gint rect_h) in rfb_decoder_corre_encoding() argument
1012 gint rect_w, gint rect_h) in rfb_decoder_hextile_encoding() argument
1022 y_end = rect_h % 16; in rfb_decoder_hextile_encoding()
[all …]

12345