| /xsrc/external/mit/xorg-server/dist/render/ |
| mitri.c | 37 miPointFixedBounds(int npoint, xPointFixed * points, BoxPtr bounds) 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->y1 [all...] |
| mipict.h | 108 miPointFixedBounds(int npoint, xPointFixed * points, BoxPtr bounds); 111 miTriangleBounds(int ntri, xTriangle * tris, BoxPtr bounds);
|
| /xsrc/external/mit/xorg-server.old/dist/render/ |
| mitri.c | 37 miPointFixedBounds (int npoint, xPointFixed *points, BoxPtr bounds) 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->y1 92 BoxRec bounds; local [all...] |
| mitrap.c | 154 BoxRec bounds; local 161 miTrapezoidBounds (ntrap, traps, &bounds); 162 if (bounds.y1 >= bounds.y2 || bounds.x1 >= bounds.x2) 165 bounds.x2 - bounds.x1, 166 bounds.y2 - bounds.y1) [all...] |
| mipict.h | 159 miPointFixedBounds (int npoint, xPointFixed *points, BoxPtr bounds); 162 miTriangleBounds (int ntri, xTriangle *tris, BoxPtr bounds);
|
| /xsrc/external/mit/xorg-server/dist/glamor/ |
| glamor_trapezoid.c | 83 BoxRec bounds; local 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.y1 [all...] |
| glamor_copy.c | 374 BoxRec bounds = glamor_no_rendering_bounds(); local 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 537 bounds = box[0]; 539 bounds.x1 = min(bounds.x1, box[n].x1) 638 BoxRec bounds; local [all...] |
| glamor_rects.c | 58 BoxRec bounds = glamor_no_rendering_bounds(); local 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),
|
| glamor_utils.h | 680 BoxRec bounds = { local 687 return bounds; 693 BoxRec bounds = { local 700 return bounds; 704 glamor_bounds_union_rect(BoxPtr bounds, xRectangle *rect) 706 bounds->x1 = min(bounds->x1, rect->x); 707 bounds->y1 = min(bounds->y1, rect->y); 708 bounds->x2 = min(SHRT_MAX, max(bounds->x2, rect->x + rect->width)) [all...] |
| /xsrc/external/mit/xorg-server.old/dist/hw/xwin/xlaunch/window/ |
| window.cc | 66 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.left = left [all...] |
| window.h | 69 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/ |
| saa_render.c | 104 BoxRec bounds; local 112 miTrapezoidBounds(ntrap, traps, &bounds); 114 if (bounds.y1 >= bounds.y2 || bounds.x1 >= bounds.x2) 121 bounds.x2 - bounds.x1, 122 bounds.y2 - bounds.y1) 166 BoxRec bounds; local [all...] |
| /xsrc/external/mit/xf86-video-intel/dist/src/sna/ |
| sna_trapezoids.c | 219 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 293 if (!trapezoids_bounds(ntrap, traps, &bounds)) 296 DBG(("%s: bounds (%d, %d), (%d, %d)\n", __FUNCTION__ 877 BoxRec bounds; local 994 BoxRec bounds; local 1130 BoxRec bounds; local [all...] |
| /xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/ |
| sna_trapezoids.c | 219 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 293 if (!trapezoids_bounds(ntrap, traps, &bounds)) 296 DBG(("%s: bounds (%d, %d), (%d, %d)\n", __FUNCTION__ 877 BoxRec bounds; local 994 BoxRec bounds; local 1130 BoxRec bounds; local [all...] |
| /xsrc/external/mit/libX11/dist/src/xkb/ |
| XKBGeom.c | 47 _XkbCheckBounds(XkbBoundsPtr bounds, int x, int y) 49 if (x < bounds->x1) 50 bounds->x1 = x; 51 if (x > bounds->x2) 52 bounds->x2 = x; 53 if (y < bounds->y1) 54 bounds->y1 = y; 55 if (y > bounds->y2) 56 bounds->y2 = y; 69 shape->bounds.x1 = shape->bounds.y1 = MAXSHORT 115 XkbBoundsPtr bounds, sbounds; local 153 XkbBoundsPtr bounds, rbounds; local [all...] |
| /xsrc/external/mit/xf86-video-intel/dist/src/uxa/ |
| uxa-render.c | 1593 BoxRec bounds; local 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.y1 1685 BoxRec bounds; local 1805 BoxRec bounds; local 1896 BoxRec bounds; local [all...] |
| /xsrc/external/mit/xf86-video-intel-2014/dist/src/uxa/ |
| uxa-render.c | 1593 BoxRec bounds; local 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.y1 1685 BoxRec bounds; local 1805 BoxRec bounds; local 1896 BoxRec bounds; local [all...] |
| /xsrc/external/mit/xf86-video-intel-old/dist/uxa/ |
| uxa-render.c | 1092 BoxRec bounds; local 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.y1 1191 BoxRec bounds; local [all...] |
| /xsrc/external/mit/xorg-server/dist/exa/ |
| exa_render.c | 565 * the bounds of the current rendering, so we need to force 1124 BoxRec bounds; local 1131 miTrapezoidBounds(ntrap, traps, &bounds); 1133 if (bounds.y1 >= bounds.y2 || bounds.x1 >= bounds.x2) 1140 bounds.x2 - bounds.x1, 1141 bounds.y2 - bounds.y1) 1188 BoxRec bounds; local [all...] |
| /xsrc/external/mit/xorg-server.old/dist/exa/ |
| exa_render.c | 573 * the bounds of the current rendering, so we need to force 1152 BoxRec bounds; local 1159 miTrapezoidBounds (ntrap, traps, &bounds); 1161 if (bounds.y1 >= bounds.y2 || bounds.x1 >= bounds.x2) 1168 bounds.x2 - bounds.x1, 1169 bounds.y2 - bounds.y1) 1217 BoxRec bounds; local [all...] |
| /xsrc/external/mit/xorg-server/dist/hw/xquartz/ |
| quartz.c | 244 BoxRec bounds; local 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/xorg-server.old/dist/hw/xquartz/ |
| quartz.c | 205 BoxRec bounds; local 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/xf86-video-qxl/dist/src/uxa/ |
| uxa-render.c | 1762 BoxRec bounds; local 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.y1 1885 BoxRec bounds; local [all...] |
| /xsrc/external/mit/MesaLib/dist/src/amd/vulkan/ |
| radv_acceleration_structure.c | 402 compute_bounds(const char *base_ptr, uint32_t node_id, float *bounds) 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[3 + j] = MAX2(bounds[3 + j], node->coords[c2][1][j]) 476 float bounds[6]; local 600 float bounds[4][6]; local 1102 nir_variable *bounds[2] = { local 1206 nir_ssa_def *bounds[] = {positions[0], positions[0]}; local 1223 nir_ssa_def *bounds[] = {input_bounds[0][0], input_bounds[0][1]}; local 1235 nir_ssa_def *bounds[2]; local 1245 nir_ssa_def *bounds[2]; local 1321 nir_variable *bounds[2] = { local [all...] |
| /xsrc/external/mit/xorg-server/dist/hw/xfree86/modes/ |
| xf86Rotate.c | 203 RegionInit(&crtc_damage, &crtc->bounds, 1); 480 crtc->bounds.x1 = 0; 481 crtc->bounds.x2 = crtc->mode.HDisplay; 482 crtc->bounds.y1 = 0; 483 crtc->bounds.y2 = crtc->mode.VDisplay; 484 pixman_f_transform_bounds(&f_crtc_to_fb, &crtc->bounds);
|