Searched refs:height (Results 1 - 25 of 838) sorted by path

1234567891011>>

/haiku/headers/build/
H A DHaikuBuildCompatibility.h189 float height; member in struct:__anon1
/haiku/headers/libs/agg/
H A Dagg_alpha_mask_u8.h73 y < (int)m_rbuf->height())
86 y < (int)m_rbuf->height())
101 int ymax = m_rbuf->height() - 1;
151 int ymax = m_rbuf->height() - 1;
203 int ymax = m_rbuf->height() - 1;
252 int ymax = m_rbuf->height() - 1;
H A Dagg_blur.h111 unsigned h = img.height();
370 unsigned h = img.height();
550 unsigned h = img.height();
808 unsigned h = img.height();
1108 int h = img.height();
H A Dagg_glyph_raster_bin.h53 double height() const { return m_font[0]; } function in class:agg::glyph_raster_bin
H A Dagg_gsv_text.h51 void size(double height, double width=0.0);
H A Dagg_pixfmt_amask_adaptor.h78 unsigned height() const { return m_pixf->height(); } function in class:agg::pixfmt_amask_adaptor
H A Dagg_pixfmt_gray.h186 if(r.clip(rect_i(0, 0, pixf.width()-1, pixf.height()-1)))
200 AGG_INLINE unsigned height() const { return m_rbuf->height(); } function in class:agg::pixfmt_alpha_blend_gray
554 for(y = 0; y < height(); ++y)
H A Dagg_pixfmt_rgb.h244 if(r.clip(rect_i(0, 0, pixf.width()-1, pixf.height()-1)))
261 AGG_INLINE unsigned height() const { return m_rbuf->height(); } function in class:agg::pixfmt_alpha_blend_rgb
616 for(y = 0; y < height(); ++y)
H A Dagg_pixfmt_rgb_packed.h839 if(r.clip(rect_i(0, 0, pixf.width()-1, pixf.height()-1)))
855 AGG_INLINE unsigned height() const { return m_rbuf->height(); } function in class:agg::pixfmt_alpha_blend_rgb_packed
H A Dagg_pixfmt_rgba.h1783 if(r.clip(rect_i(0, 0, pixf.width()-1, pixf.height()-1)))
1797 AGG_INLINE unsigned height() const { return m_rbuf->height(); } function in class:agg::pixfmt_alpha_blend_rgba
2216 for(y = 0; y < height(); ++y)
2368 if(r.clip(rect_i(0, 0, pixf.width()-1, pixf.height()-1)))
2382 AGG_INLINE unsigned height() const { return m_rbuf->height(); } function in class:agg::pixfmt_custom_blend_rgba
2612 for(y = 0; y < height(); ++y)
H A Dagg_pixfmt_transposer.h39 AGG_INLINE unsigned width() const { return m_pixf->height(); }
40 AGG_INLINE unsigned height() const { return m_pixf->width(); } function in class:agg::pixfmt_transposer
H A Dagg_renderer_base.h41 m_clip_box(0, 0, ren.width() - 1, ren.height() - 1)
46 m_clip_box = rect_i(0, 0, ren.width() - 1, ren.height() - 1);
55 unsigned height() const { return m_ren->height(); } function in class:agg::renderer_base
62 if(cb.clip(rect_i(0, 0, width() - 1, height() - 1)))
82 m_clip_box.y2 = height() - 1;
129 for(y = 0; y < height(); y++)
142 for(y = 0; y < height(); y++)
493 rect_i rsrc(0, 0, src.width(), src.height());
508 rect_i rc = clip_rect_area(rdst, rsrc, src.width(), src.height());
[all...]
H A Dagg_renderer_mclip.h57 unsigned height() const { return m_ren.height(); } function in class:agg::renderer_mclip
110 if(cb.clip(rect_i(0, 0, width() - 1, height() - 1)))
H A Dagg_renderer_outline_image.h34 line_image_scale(const Source& src, double height) : argument
36 m_height(height),
37 m_scale(src.height() / height)
42 double height() const { return m_height; } function in class:agg::line_image_scale
47 int h = m_source.height() - 1;
108 m_height = uceil(src.height());
111 m_half_height_hr = uround(src.height() * line_subpixel_scale/2);
H A Dagg_rendering_buffer.h53 row_ptr_cache(T* buf, unsigned width, unsigned height, int stride) : argument
60 attach(buf, width, height, stride);
64 void attach(T* buf, unsigned width, unsigned height, int stride) argument
68 m_height = height;
70 if(height > m_rows.size())
72 m_rows.resize(height);
79 row_ptr = m_buf - int(height - 1) * stride;
84 while(height--)
95 unsigned height() const { return m_height; } function in class:agg::row_ptr_cache
115 unsigned h = height();
[all...]
H A Dagg_rendering_buffer_dynarow.h62 rendering_buffer_dynarow(unsigned width, unsigned height, argument
64 m_rows(height),
66 m_height(height),
69 memset(&m_rows[0], 0, sizeof(row_data) * height);
74 void init(unsigned width, unsigned height, unsigned byte_width) argument
81 if(width && height)
84 m_height = height;
86 m_rows.resize(height);
87 memset(&m_rows[0], 0, sizeof(row_data) * height);
93 unsigned height() cons function in class:agg::rendering_buffer_dynarow
[all...]
H A Dagg_span_image_filter_gray.h195 int maxy = base_type::source().height() - 1;
H A Dagg_span_image_filter_rgb.h225 int maxy = base_type::source().height() - 1;
H A Dagg_span_image_filter_rgba.h231 int maxy = base_type::source().height() - 1;
/haiku/headers/libs/agg/util/
H A Dagg_color_conv.h40 unsigned height = src->height(); local
43 if(dst->height() < height) height = dst->height();
48 for(y = 0; y < height; y++)
/haiku/headers/libs/glut/GL/
H A Dglut.h556 GLUTAPI void GLUTAPIENTRY glutInitWindowSize(int width, int height);
568 GLUTAPI int GLUTAPIENTRY glutCreateSubWindow(int win, int x, int y, int width, int height);
580 GLUTAPI void GLUTAPIENTRY glutReshapeWindow(int width, int height);
627 GLUTAPI void GLUTAPIENTRY glutReshapeFunc(void (GLUTCALLBACK *func)(int width, int height));
694 GLUTAPI void GLUTAPIENTRY glutWireCone(GLdouble base, GLdouble height, GLint slices, GLint stacks);
695 GLUTAPI void GLUTAPIENTRY glutSolidCone(GLdouble base, GLdouble height, GLint slices, GLint stacks);
716 GLUTAPI void GLUTAPIENTRY glutVideoResize(int x, int y, int width, int height);
717 GLUTAPI void GLUTAPIENTRY glutVideoPan(int x, int y, int width, int height);
/haiku/headers/libs/print/libprint/
H A DPagesView.h16 void GetPreferredSize(float *width, float *height);
H A DPreview.h61 virtual void FrameResized(float width, float height);
/haiku/headers/os/add-ons/graphics/
H A DAccelerant.h175 float height; member in struct:__anon13
216 /* virtual width and height */
223 uint16 height; /* 0 to M, where zero means one */ member in struct:__anon18
230 /* virtual width and height */
248 /* virtual width and height */
315 typedef status_t (*set_cursor_shape)(uint16 width, uint16 height,
317 typedef status_t (*set_cursor_bitmap)(uint16 width, uint16 height,
/haiku/headers/os/interface/
H A DBox.h49 virtual void FrameResized(float width, float height);

Completed in 210 milliseconds

1234567891011>>