Home
last modified time | relevance | path

Searched refs:plane1 (Results 1 – 25 of 585) sorted by relevance

12345678910>>...24

/dports/www/chromium-legacy/chromium-88.0.4324.182/ui/ozone/platform/drm/gpu/
H A Dhardware_display_controller_unittest.cc448 planes.push_back(plane1.Clone()); in TEST_F()
463 plane1.gpu_fence = nullptr; in TEST_F()
626 planes.push_back(plane1.Clone()); in TEST_F()
649 planes.push_back(plane1.Clone()); in TEST_F()
685 planes.push_back(plane1.Clone()); in TEST_F()
726 planes.push_back(plane1.Clone()); in TEST_F()
768 planes.push_back(plane1.Clone()); in TEST_F()
796 planes.push_back(plane1.Clone()); in TEST_F()
841 planes.push_back(plane1.Clone()); in TEST_F()
856 planes.push_back(plane1.Clone()); in TEST_F()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/ui/ozone/platform/drm/gpu/
H A Dhardware_display_controller_unittest.cc341 planes.push_back(plane1.Clone()); in TEST_F()
364 planes.push_back(plane1.Clone()); in TEST_F()
400 planes.push_back(plane1.Clone()); in TEST_F()
443 planes.push_back(plane1.Clone()); in TEST_F()
487 planes.push_back(plane1.Clone()); in TEST_F()
516 planes.push_back(plane1.Clone()); in TEST_F()
562 planes.push_back(plane1.Clone()); in TEST_F()
577 planes.push_back(plane1.Clone()); in TEST_F()
588 planes.push_back(plane1.Clone()); in TEST_F()
600 planes.push_back(plane1.Clone()); in TEST_F()
[all …]
/dports/multimedia/oggvideotools/oggvideotools-0.9.1/src/effect/
H A DpictureBlend.cpp26 RGBPlane PictureBlend::crossfade(RGBPlane & plane1, RGBPlane & plane2, float velocity) in crossfade() argument
29 if ((plane1->width != plane2->width) || (plane1->height != plane2->height)) in crossfade()
32 uint32 size = plane1->width*plane1->height*4; in crossfade()
34 RGBPlane retPlane(plane1->width, plane1->height); in crossfade()
43 pixel1 = plane1->plane[i]; in crossfade()
53 pixel1 = plane1->plane[i+1]; in crossfade()
63 pixel1 = plane1->plane[i+2]; in crossfade()
/dports/games/dhewm3/dhewm3-1.5.1/neo/idlib/geometry/
H A DWinding2D.h89 static bool Plane2DIntersection( const idVec3 &plane1, const idVec3 &plane2, idVec2 &point );
152 ID_INLINE bool idWinding2D::Plane2DIntersection( const idVec3 &plane1, const idVec3 &plane2, idVec2… in Plane2DIntersection() argument
155 n00 = plane1.x * plane1.x + plane1.y * plane1.y; in Plane2DIntersection()
156 n01 = plane1.x * plane2.x + plane1.y * plane2.y; in Plane2DIntersection()
165 f0 = ( n01 * plane2.z - n11 * plane1.z ) * invDet; in Plane2DIntersection()
166 f1 = ( n01 * plane1.z - n00 * plane2.z ) * invDet; in Plane2DIntersection()
167 point.x = f0 * plane1.x + f1 * plane2.x; in Plane2DIntersection()
168 point.y = f0 * plane1.y + f1 * plane2.y; in Plane2DIntersection()
/dports/math/vtk9/VTK-9.1.0/Filters/Modeling/Testing/Python/
H A DTestImprintFilter2.py10 plane1 = vtk.vtkPlaneSource() variable
11 plane1.SetXResolution(res)
12 plane1.SetYResolution(res)
13 plane1.SetOrigin(0,0,0)
14 plane1.SetPoint1(10,0,0)
15 plane1.SetPoint2(0,10,0)
32 imp.SetTargetConnection(plane1.GetOutputPort())
H A DTestImprintFilter.py22 plane1 = vtk.vtkPlaneSource() variable
23 plane1.SetXResolution(3)
24 plane1.SetYResolution(1)
25 plane1.SetOrigin(0,0,0)
26 plane1.SetPoint1(2,0,0)
27 plane1.SetPoint2(0,1,0)
30 p1Mapper.SetInputConnection(plane1.GetOutputPort())
52 imp.SetTargetConnection(plane1.GetOutputPort())
/dports/x11-toolkits/plib/plib-1.8.5/src/sg/
H A DsgdIsect.cxx36 sgdVec4 plane1, sgdVec4 plane2 ) in sgdIsectPlanePlane() argument
40 sgdVectorProductVec3 ( dir, plane1, plane2 ) ; in sgdIsectPlanePlane()
67 (plane1[2] * plane2[3] - plane2[2] * plane1[3]) / dir[0], in sgdIsectPlanePlane()
68 (plane2[1] * plane1[3] - plane1[1] * plane2[3]) / dir[0] ); in sgdIsectPlanePlane()
72 (plane2[2] * plane1[3] - plane1[2] * plane2[3]) / dir[1], in sgdIsectPlanePlane()
74 (plane1[0] * plane2[3] - plane2[0] * plane1[3]) / dir[1] ); in sgdIsectPlanePlane()
78 (plane1[1] * plane2[3] - plane2[1] * plane1[3]) / dir[2], in sgdIsectPlanePlane()
79 (plane2[0] * plane1[3] - plane1[0] * plane2[3]) / dir[2], in sgdIsectPlanePlane()
H A DsgIsect.cxx36 sgVec4 plane1, sgVec4 plane2 ) in sgIsectPlanePlane() argument
40 sgVectorProductVec3 ( dir, plane1, plane2 ) ; in sgIsectPlanePlane()
67 (plane1[2] * plane2[3] - plane2[2] * plane1[3]) / dir[0], in sgIsectPlanePlane()
68 (plane2[1] * plane1[3] - plane1[1] * plane2[3]) / dir[0] ); in sgIsectPlanePlane()
72 (plane2[2] * plane1[3] - plane1[2] * plane2[3]) / dir[1], in sgIsectPlanePlane()
74 (plane1[0] * plane2[3] - plane2[0] * plane1[3]) / dir[1] ); in sgIsectPlanePlane()
78 (plane1[1] * plane2[3] - plane2[1] * plane1[3]) / dir[2], in sgIsectPlanePlane()
79 (plane2[0] * plane1[3] - plane1[0] * plane2[3]) / dir[2], in sgIsectPlanePlane()
/dports/emulators/mess/mame-mame0226/src/mame/video/
H A Dwswan.cpp252 plane1 = m_vram[tile_address + 1] << 1; in draw_background()
267 plane1 = m_vram[tile_address + 1] << 1; in draw_background()
294 plane1 = plane1 >> 1; in draw_background()
361 plane1 = m_vram[tile_address + 1] << 1; in draw_foreground_0()
376 plane1 = m_vram[tile_address + 1] << 1; in draw_foreground_0()
403 plane1 = plane1 >> 1; in draw_foreground_0()
470 plane1 = m_vram[tile_address + 1] << 1; in draw_foreground_2()
485 plane1 = m_vram[tile_address + 1] << 1; in draw_foreground_2()
512 plane1 = plane1 >> 1; in draw_foreground_2()
619 plane1 = plane1 >> 1; in draw_foreground_3()
[all …]
/dports/emulators/mame/mame-mame0226/src/mame/video/
H A Dwswan.cpp252 plane1 = m_vram[tile_address + 1] << 1; in draw_background()
267 plane1 = m_vram[tile_address + 1] << 1; in draw_background()
294 plane1 = plane1 >> 1; in draw_background()
361 plane1 = m_vram[tile_address + 1] << 1; in draw_foreground_0()
376 plane1 = m_vram[tile_address + 1] << 1; in draw_foreground_0()
403 plane1 = plane1 >> 1; in draw_foreground_0()
470 plane1 = m_vram[tile_address + 1] << 1; in draw_foreground_2()
485 plane1 = m_vram[tile_address + 1] << 1; in draw_foreground_2()
512 plane1 = plane1 >> 1; in draw_foreground_2()
619 plane1 = plane1 >> 1; in draw_foreground_3()
[all …]
/dports/math/gismo/gismo-21.12.0/external/onurbs/
H A Dopennurbs_quaternion.cpp119 m[0][0] = plane1.xaxis.x*plane0.xaxis.x in SetRotation()
120 + plane1.yaxis.x*plane0.yaxis.x in SetRotation()
122 m[0][1] = plane1.xaxis.x*plane0.xaxis.y in SetRotation()
123 + plane1.yaxis.x*plane0.yaxis.y in SetRotation()
125 m[0][2] = plane1.xaxis.x*plane0.xaxis.z in SetRotation()
126 + plane1.yaxis.x*plane0.yaxis.z in SetRotation()
128 m[1][0] = plane1.xaxis.y*plane0.xaxis.x in SetRotation()
129 + plane1.yaxis.y*plane0.yaxis.x in SetRotation()
131 m[1][1] = plane1.xaxis.y*plane0.xaxis.y in SetRotation()
132 + plane1.yaxis.y*plane0.yaxis.y in SetRotation()
[all …]
/dports/print/ghostscript9-agpl-base/ghostscript-9.52/devices/
H A Dgdevdjtc.c73 byte *plane1=NULL; in djet500c_print_page() local
148 if (plane1) free(plane1); in djet500c_print_page()
152 plane1=(byte*)malloc(planeSize+8); in djet500c_print_page()
155 if (plane1 == NULL || plane2 == NULL || plane3 == NULL) { in djet500c_print_page()
175 plane1[k] = ~(byte)(c); in djet500c_print_page()
195 count = mode2compress(plane1, plane1 + lineLen, bitData); in djet500c_print_page()
220 if (plane1) free(plane1); in djet500c_print_page()
/dports/print/ghostscript9-agpl-x11/ghostscript-9.52/devices/
H A Dgdevdjtc.c73 byte *plane1=NULL; in djet500c_print_page() local
148 if (plane1) free(plane1); in djet500c_print_page()
152 plane1=(byte*)malloc(planeSize+8); in djet500c_print_page()
155 if (plane1 == NULL || plane2 == NULL || plane3 == NULL) { in djet500c_print_page()
175 plane1[k] = ~(byte)(c); in djet500c_print_page()
195 count = mode2compress(plane1, plane1 + lineLen, bitData); in djet500c_print_page()
220 if (plane1) free(plane1); in djet500c_print_page()
/dports/science/sparta/sparta-20Oct2021/examples/circle/
H A Din.circle.transparent26 # data.plane1 = line segment with normal into flow
31 read_surf data.plane1 group plane1 transparent
38 surf_modify plane1 collide 2
45 compute plane1 surf plane1 all n ke
47 fix plane1 ave/surf plane1 1 100 100 c_plane1[*]
/dports/devel/R-cran-BH/BH/inst/include/boost/geometry/strategies/spherical/
H A Dintersection.hpp230 plane1 = calc_policy.get_plane(a1v, a2v); in apply() local
235 calculate_dist(a1v, a2v, plane1, dist_a1_a2); in apply()
245 sides.set<1>(plane1.side_value(b1v), plane1.side_value(b2v)); in apply()
415 plane1, plane2, calc_policy, in apply()
472 calculate_dist(a1v, a2v, plane1, b1v, dist_a1_b1); in calculate_collinear_data()
493 calculate_dist(a1v, a2v, plane1, b2v, dist_a1_b2); in calculate_collinear_data()
530 calculate_dist(a1v, a2v, plane1, ip1, dist_a1_ip); in calculate_ip_data()
660 Plane const& plane1, // in in calculate_dist()
671 Plane const& plane1, // in in calculate_dist()
831 static bool intersection_points(plane<Point3d> const& plane1, in intersection_points()
[all …]
/dports/print/ghostscript8-x11/ghostscript-8.71/base/
H A Dgdevdjtc.c70 byte *plane1=NULL; in djet500c_print_page() local
137 if (plane1) free(plane1); in djet500c_print_page()
141 plane1=(byte*)malloc(planeSize+8); in djet500c_print_page()
160 plane1[k] = ~(byte)(c); in djet500c_print_page()
180 count = mode2compress(plane1, plane1 + lineLen, bitData); in djet500c_print_page()
204 if (plane1) free(plane1); in djet500c_print_page()
/dports/print/ghostscript9-base/ghostscript-9.06/base/
H A Dgdevdjtc.c72 byte *plane1=NULL; in djet500c_print_page() local
141 if (plane1) free(plane1); in djet500c_print_page()
145 plane1=(byte*)malloc(planeSize+8); in djet500c_print_page()
164 plane1[k] = ~(byte)(c); in djet500c_print_page()
184 count = mode2compress(plane1, plane1 + lineLen, bitData); in djet500c_print_page()
208 if (plane1) free(plane1); in djet500c_print_page()
/dports/print/ghostscript9-x11/ghostscript-9.06/base/
H A Dgdevdjtc.c72 byte *plane1=NULL; in djet500c_print_page() local
141 if (plane1) free(plane1); in djet500c_print_page()
145 plane1=(byte*)malloc(planeSize+8); in djet500c_print_page()
164 plane1[k] = ~(byte)(c); in djet500c_print_page()
184 count = mode2compress(plane1, plane1 + lineLen, bitData); in djet500c_print_page()
208 if (plane1) free(plane1); in djet500c_print_page()
/dports/print/ghostscript8-base/ghostscript-8.71/base/
H A Dgdevdjtc.c70 byte *plane1=NULL; in djet500c_print_page() local
137 if (plane1) free(plane1); in djet500c_print_page()
141 plane1=(byte*)malloc(planeSize+8); in djet500c_print_page()
160 plane1[k] = ~(byte)(c); in djet500c_print_page()
180 count = mode2compress(plane1, plane1 + lineLen, bitData); in djet500c_print_page()
204 if (plane1) free(plane1); in djet500c_print_page()
/dports/print/ghostscript7-base/ghostscript-7.07/src/
H A Dgdevdjtc.c76 byte *plane1=NULL; in djet500c_print_page() local
143 if (plane1) free(plane1); in djet500c_print_page()
147 plane1=(byte*)malloc(planeSize+8); in djet500c_print_page()
166 plane1[k] = ~(byte)(c); in djet500c_print_page()
186 count = mode2compress(plane1, plane1 + lineLen, bitData); in djet500c_print_page()
210 if (plane1) free(plane1); in djet500c_print_page()
/dports/print/ghostscript7-x11/ghostscript-7.07/src/
H A Dgdevdjtc.c76 byte *plane1=NULL; in djet500c_print_page() local
143 if (plane1) free(plane1); in djet500c_print_page()
147 plane1=(byte*)malloc(planeSize+8); in djet500c_print_page()
166 plane1[k] = ~(byte)(c); in djet500c_print_page()
186 count = mode2compress(plane1, plane1 + lineLen, bitData); in djet500c_print_page()
210 if (plane1) free(plane1); in djet500c_print_page()
/dports/graphics/libosmesa-gallium/mesa-21.3.6/src/mesa/math/
H A Dm_dotprod_tmp.h44 const GLfloat plane0 = plane[0], plane1 = plane[1], plane3 = plane[3]; in TAG() local
48 coord[1] * plane1 + in TAG()
64 const GLfloat plane0 = plane[0], plane1 = plane[1], plane2 = plane[2]; in TAG() local
69 coord[1] * plane1 + in TAG()
85 const GLfloat plane0 = plane[0], plane1 = plane[1], plane2 = plane[2]; in TAG() local
90 coord[1] * plane1 + in TAG()
/dports/lang/clover/mesa-21.3.6/src/mesa/math/
H A Dm_dotprod_tmp.h44 const GLfloat plane0 = plane[0], plane1 = plane[1], plane3 = plane[3]; in TAG() local
48 coord[1] * plane1 + in TAG()
64 const GLfloat plane0 = plane[0], plane1 = plane[1], plane2 = plane[2]; in TAG() local
69 coord[1] * plane1 + in TAG()
85 const GLfloat plane0 = plane[0], plane1 = plane[1], plane2 = plane[2]; in TAG() local
90 coord[1] * plane1 + in TAG()
/dports/graphics/libosmesa/mesa-21.3.6/src/mesa/math/
H A Dm_dotprod_tmp.h44 const GLfloat plane0 = plane[0], plane1 = plane[1], plane3 = plane[3]; in TAG() local
48 coord[1] * plane1 + in TAG()
64 const GLfloat plane0 = plane[0], plane1 = plane[1], plane2 = plane[2]; in TAG() local
69 coord[1] * plane1 + in TAG()
85 const GLfloat plane0 = plane[0], plane1 = plane[1], plane2 = plane[2]; in TAG() local
90 coord[1] * plane1 + in TAG()
/dports/graphics/mesa-libs/mesa-21.3.6/src/mesa/math/
H A Dm_dotprod_tmp.h44 const GLfloat plane0 = plane[0], plane1 = plane[1], plane3 = plane[3]; in TAG() local
48 coord[1] * plane1 + in TAG()
64 const GLfloat plane0 = plane[0], plane1 = plane[1], plane2 = plane[2]; in TAG() local
69 coord[1] * plane1 + in TAG()
85 const GLfloat plane0 = plane[0], plane1 = plane[1], plane2 = plane[2]; in TAG() local
90 coord[1] * plane1 + in TAG()

12345678910>>...24