Searched refs:bounds (Results 1 - 25 of 362) sorted by relevance

1234567891011>>

/xsrc/external/mit/xorg-server/dist/render/
H A Dmitri.c37 miPointFixedBounds(int npoint, xPointFixed * points, BoxPtr bounds) argument
39 bounds->x1 = xFixedToInt(points->x);
40 bounds->x2 = xFixedToInt(xFixedCeil(points->x));
41 bounds->y1 = xFixedToInt(points->y);
42 bounds->y2 = xFixedToInt(xFixedCeil(points->y));
51 if (x1 < bounds->x1)
52 bounds->x1 = x1;
53 else if (x2 > bounds->x2)
54 bounds->x2 = x2;
55 if (y1 < bounds
64 miTriangleBounds(int ntri,xTriangle * tris,BoxPtr bounds) argument
[all...]
H A Dmipict.h108 miPointFixedBounds(int npoint, xPointFixed * points, BoxPtr bounds);
111 miTriangleBounds(int ntri, xTriangle * tris, BoxPtr bounds);
/xsrc/external/mit/xorg-server.old/dist/render/
H A Dmitri.c37 miPointFixedBounds (int npoint, xPointFixed *points, BoxPtr bounds) argument
39 bounds->x1 = xFixedToInt (points->x);
40 bounds->x2 = xFixedToInt (xFixedCeil (points->x));
41 bounds->y1 = xFixedToInt (points->y);
42 bounds->y2 = xFixedToInt (xFixedCeil (points->y));
52 if (x1 < bounds->x1)
53 bounds->x1 = x1;
54 else if (x2 > bounds->x2)
55 bounds->x2 = x2;
56 if (y1 < bounds
65 miTriangleBounds(int ntri,xTriangle * tris,BoxPtr bounds) argument
92 BoxRec bounds; local in function:miTriangles
[all...]
H A Dmitrap.c154 BoxRec bounds; local in function:miTrapezoids
161 miTrapezoidBounds (ntrap, traps, &bounds);
162 if (bounds.y1 >= bounds.y2 || bounds.x1 >= bounds.x2)
165 bounds.x2 - bounds.x1,
166 bounds.y2 - bounds
[all...]
/xsrc/external/mit/xorg-server/dist/glamor/
H A Dglamor_trapezoid.c83 BoxRec bounds; local in function:glamor_trapezoids
105 miTrapezoidBounds(ntrap, traps, &bounds);
107 if (bounds.y1 >= bounds.y2 || bounds.x1 >= bounds.x2)
113 width = bounds.x2 - bounds.x1;
114 height = bounds.y2 - bounds
[all...]
H A Dglamor_copy.c374 BoxRec bounds = glamor_no_rendering_bounds(); local in function:glamor_copy_fbo_fbo_draw
428 bounds = glamor_start_rendering_bounds();
430 glamor_bounds_union_box(&bounds, &box[i]);
461 .x1 = max(-args.dx, bounds.x1),
462 .y1 = max(-args.dy, bounds.y1),
463 .x2 = min(-args.dx + src_box->x2 - src_box->x1, bounds.x2),
464 .y2 = min(-args.dy + src_box->y2 - src_box->y1, bounds.y2),
516 BoxRec bounds; local in function:glamor_copy_fbo_fbo_temp
537 bounds = box[0];
539 bounds
638 BoxRec bounds; local in function:glamor_copy_needs_temp
[all...]
H A Dglamor_rects.c58 BoxRec bounds = glamor_no_rendering_bounds(); local in function:glamor_poly_fill_rect_gl
67 bounds = glamor_start_rendering_bounds();
69 glamor_bounds_union_rect(&bounds, &prect[i]);
139 .x1 = max(box->x1, bounds.x1 + drawable->x),
140 .y1 = max(box->y1, bounds.y1 + drawable->y),
141 .x2 = min(box->x2, bounds.x2 + drawable->x),
142 .y2 = min(box->y2, bounds.y2 + drawable->y),
H A Dglamor_utils.h680 BoxRec bounds = { local in function:glamor_no_rendering_bounds
687 return bounds;
693 BoxRec bounds = { local in function:glamor_start_rendering_bounds
700 return bounds;
704 glamor_bounds_union_rect(BoxPtr bounds, xRectangle *rect) argument
706 bounds->x1 = min(bounds->x1, rect->x);
707 bounds->y1 = min(bounds->y1, rect->y);
708 bounds
713 glamor_bounds_union_box(BoxPtr bounds,BoxPtr box) argument
[all...]
/xsrc/external/mit/xorg-server.old/dist/hw/xwin/xlaunch/window/
H A Dwindow.cc66 CWindow::CWindow(const char *_title) : title(_title), hwnd(NULL), parent(NULL), bounds(), owndproc(NULL), showing(FALSE)
79 bounds.left,
80 bounds.top,
81 bounds.width,
82 bounds.height,
137 bounds.width = LOWORD(lParam);
138 bounds.height = LOWORD(lParam);
141 bounds.left = LOWORD(lParam);
142 bounds.top = LOWORD(lParam);
185 bounds
[all...]
H A Dwindow.h69 CBoundary bounds; member in class:CWindow
94 int GetWidth() { return bounds.width; };
95 int GetHeight() { return bounds.height; };
96 int GetLeft() { return bounds.left; };
97 int GetTop() { return bounds.top; };
/xsrc/external/mit/xf86-video-vmware/dist/saa/
H A Dsaa_render.c104 BoxRec bounds; local in function:saa_trapezoids
112 miTrapezoidBounds(ntrap, traps, &bounds);
114 if (bounds.y1 >= bounds.y2 || bounds.x1 >= bounds.x2)
121 bounds.x2 - bounds.x1,
122 bounds.y2 - bounds
166 BoxRec bounds; local in function:saa_triangles
[all...]
/xsrc/external/mit/xf86-video-intel/dist/src/sna/
H A Dsna_trapezoids.c219 BoxRec bounds; member in struct:rasterize_traps_thread
230 width = thread->bounds.x2 - thread->bounds.x1;
231 height = thread->bounds.y2 - thread->bounds.y1;
250 -thread->bounds.x1, -thread->bounds.y1);
285 BoxRec bounds; local in function:trapezoids_fallback
293 if (!trapezoids_bounds(ntrap, traps, &bounds))
296 DBG(("%s: bounds (
877 BoxRec bounds; local in function:triangles_fallback
994 BoxRec bounds; local in function:tristrip_fallback
1130 BoxRec bounds; local in function:trifan_fallback
[all...]
/xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/
H A Dsna_trapezoids.c219 BoxRec bounds; member in struct:rasterize_traps_thread
230 width = thread->bounds.x2 - thread->bounds.x1;
231 height = thread->bounds.y2 - thread->bounds.y1;
250 -thread->bounds.x1, -thread->bounds.y1);
285 BoxRec bounds; local in function:trapezoids_fallback
293 if (!trapezoids_bounds(ntrap, traps, &bounds))
296 DBG(("%s: bounds (
877 BoxRec bounds; local in function:triangles_fallback
994 BoxRec bounds; local in function:tristrip_fallback
1130 BoxRec bounds; local in function:trifan_fallback
[all...]
/xsrc/external/mit/libX11/dist/src/xkb/
H A DXKBGeom.c50 _XkbCheckBounds(XkbBoundsPtr bounds, int x, int y) argument
52 if (x < bounds->x1)
53 bounds->x1 = x;
54 if (x > bounds->x2)
55 bounds->x2 = x;
56 if (y < bounds->y1)
57 bounds->y1 = y;
58 if (y > bounds->y2)
59 bounds->y2 = y;
72 shape->bounds
87 XkbComputeShapeTop(XkbShapePtr shape,XkbBoundsPtr bounds) argument
118 XkbBoundsPtr bounds, sbounds; local in function:XkbComputeRowBounds
156 XkbBoundsPtr bounds, rbounds; local in function:XkbComputeSectionBounds
[all...]
/xsrc/external/mit/xf86-video-intel/dist/src/uxa/
H A Duxa-render.c1593 BoxRec bounds; local in function:uxa_check_trapezoids
1602 miTrapezoidBounds (ntrap, traps, &bounds);
1603 if (bounds.y1 >= bounds.y2 || bounds.x1 >= bounds.x2)
1606 width = bounds.x2 - bounds.x1;
1607 height = bounds.y2 - bounds
1685 BoxRec bounds; local in function:uxa_trapezoids
1805 BoxRec bounds; local in function:uxa_check_triangles
1896 BoxRec bounds; local in function:uxa_triangles
[all...]
/xsrc/external/mit/xf86-video-intel-2014/dist/src/uxa/
H A Duxa-render.c1593 BoxRec bounds; local in function:uxa_check_trapezoids
1602 miTrapezoidBounds (ntrap, traps, &bounds);
1603 if (bounds.y1 >= bounds.y2 || bounds.x1 >= bounds.x2)
1606 width = bounds.x2 - bounds.x1;
1607 height = bounds.y2 - bounds
1685 BoxRec bounds; local in function:uxa_trapezoids
1805 BoxRec bounds; local in function:uxa_check_triangles
1896 BoxRec bounds; local in function:uxa_triangles
[all...]
/xsrc/external/mit/xf86-video-intel-old/dist/uxa/
H A Duxa-render.c1092 BoxRec bounds; local in function:uxa_trapezoids
1096 miTrapezoidBounds (ntrap, traps, &bounds);
1098 if (bounds.y1 >= bounds.y2 || bounds.x1 >= bounds.x2)
1135 width = bounds.x2 - bounds.x1;
1136 height = bounds.y2 - bounds
1191 BoxRec bounds; local in function:uxa_triangles
[all...]
/xsrc/external/mit/xorg-server.old/dist/exa/
H A Dexa_render.c573 * the bounds of the current rendering, so we need to force
1152 BoxRec bounds; local in function:exaTrapezoids
1159 miTrapezoidBounds (ntrap, traps, &bounds);
1161 if (bounds.y1 >= bounds.y2 || bounds.x1 >= bounds.x2)
1168 bounds.x2 - bounds.x1,
1169 bounds
1217 BoxRec bounds; local in function:exaTriangles
[all...]
/xsrc/external/mit/xorg-server/dist/exa/
H A Dexa_render.c565 * the bounds of the current rendering, so we need to force
1124 BoxRec bounds; local in function:exaTrapezoids
1131 miTrapezoidBounds(ntrap, traps, &bounds);
1133 if (bounds.y1 >= bounds.y2 || bounds.x1 >= bounds.x2)
1140 bounds.x2 - bounds.x1,
1141 bounds
1188 BoxRec bounds; local in function:exaTriangles
[all...]
/xsrc/external/mit/xorg-server.old/dist/hw/xquartz/
H A Dquartz.c205 BoxRec bounds; local in function:QuartzUpdateScreens
245 bounds.x1 = 0;
246 bounds.x2 = width;
247 bounds.y1 = 0;
248 bounds.y2 = height;
249 pScreen->ConstrainCursor(inputInfo.pointer, pScreen, &bounds);
250 inputInfo.pointer->spriteInfo->sprite->physLimits = bounds;
251 inputInfo.pointer->spriteInfo->sprite->hotLimits = bounds;
/xsrc/external/mit/xorg-server/dist/hw/xquartz/
H A Dquartz.c244 BoxRec bounds; local in function:QuartzUpdateScreens
283 bounds.x1 = 0;
284 bounds.x2 = width;
285 bounds.y1 = 0;
286 bounds.y2 = height;
287 pScreen->ConstrainCursor(inputInfo.pointer, pScreen, &bounds);
288 inputInfo.pointer->spriteInfo->sprite->physLimits = bounds;
289 inputInfo.pointer->spriteInfo->sprite->hotLimits = bounds;
/xsrc/external/mit/xf86-video-qxl/dist/src/uxa/
H A Duxa-render.c1762 BoxRec bounds; local in function:uxa_trapezoids
1767 miTrapezoidBounds(ntrap, traps, &bounds);
1769 if (bounds.y1 >= bounds.y2 || bounds.x1 >= bounds.x2)
1805 width = bounds.x2 - bounds.x1;
1806 height = bounds.y2 - bounds
1885 BoxRec bounds; local in function:uxa_triangles
[all...]
/xsrc/external/mit/xclock/dist/
H A DClock.c802 XRectangle * bounds, int *xp, int *yp)
847 * Compute bounds of tail, pad a bit as the bounds aren't exact
849 bounds->x = x - tail.x - 1;
850 bounds->y = y - tail.y - 1;
851 bounds->width = tail.width + 2;
852 bounds->height = tail.height + 2;
860 RenderUpdateRectBounds(XRectangle * damage, XRectangle * bounds) argument
862 int x1 = bounds->x;
863 int y1 = bounds
801 RenderTextBounds(ClockWidget w,char * str,int off,int len,XRectangle * bounds,int * xp,int * yp) argument
899 RenderRectIn(XRectangle * rect,XRectangle * bounds) argument
920 RenderUpdateBounds(XPointDouble * points,int npoints,XRectangle * bounds) argument
954 RenderCheckBounds(XPointDouble * points,int npoints,XRectangle * bounds) argument
983 RenderResetBounds(XRectangle * bounds) argument
[all...]
/xsrc/external/mit/MesaLib/dist/src/amd/vulkan/
H A Dradv_acceleration_structure.c402 compute_bounds(const char *base_ptr, uint32_t node_id, float *bounds) argument
405 bounds[i] = INFINITY;
407 bounds[3 + i] = -INFINITY;
414 bounds[j] = MIN2(bounds[j], node->coords[v][j]);
415 bounds[3 + j] = MAX2(bounds[3 + j], node->coords[v][j]);
426 bounds[j] = MIN2(bounds[j], node->coords[c2][0][j]);
427 bounds[
476 float bounds[6]; local in function:optimize_bvh
600 float bounds[4][6]; local in function:build_bvh
1102 nir_variable *bounds[2] = { local in function:build_leaf_shader
1206 nir_ssa_def *bounds[] = {positions[0], positions[0]}; local in function:determine_bounds
1223 nir_ssa_def *bounds[] = {input_bounds[0][0], input_bounds[0][1]}; local in function:determine_bounds
1235 nir_ssa_def *bounds[2]; local in function:determine_bounds
1245 nir_ssa_def *bounds[2]; local in function:determine_bounds
1321 nir_variable *bounds[2] = { local in function:build_internal_shader
[all...]
/xsrc/external/mit/MesaLib/dist/docs/relnotes/
H A D18.1.7.rst49 - i965: Advertise 8 bits subpixel precision for viewport bounds on
69 - anv/lower_ycbcr: Use the binding array size for bounds checks

Completed in 40 milliseconds

1234567891011>>