Home
last modified time | relevance | path

Searched refs:XRes (Results 1 – 25 of 196) sorted by relevance

12345678

/dports/graphics/pcl-pointclouds/pcl-pcl-1.12.0/io/src/openni_camera/
H A Dopenni_depth_image.cpp50 if (width > depth_md_->XRes () || height > depth_md_->YRes ()) in fillDepthImageRaw()
53 if (depth_md_->XRes () % width != 0 || depth_md_->YRes () % height != 0) in fillDepthImageRaw()
70 unsigned xStep = depth_md_->XRes () / width; in fillDepthImageRaw()
71 unsigned ySkip = (depth_md_->YRes () / height - 1) * depth_md_->XRes (); in fillDepthImageRaw()
103 if (width > depth_md_->XRes () || height > depth_md_->YRes ()) in fillDepthImage()
106 if (depth_md_->XRes () % width != 0 || depth_md_->YRes () % height != 0) in fillDepthImage()
116 unsigned xStep = depth_md_->XRes () / width; in fillDepthImage()
117 unsigned ySkip = (depth_md_->YRes () / height - 1) * depth_md_->XRes (); in fillDepthImage()
149 if (width > depth_md_->XRes () || height > depth_md_->YRes ()) in fillDisparityImage()
152 if (depth_md_->XRes () % width != 0 || depth_md_->YRes () % height != 0) in fillDisparityImage()
[all …]
H A Dopenni_image_yuv_422.cpp69 if (image_md_->XRes() != width && image_md_->YRes() != height) in fillRGB()
71 if (width > image_md_->XRes () || height > image_md_->YRes ()) in fillRGB()
74 if ( image_md_->XRes () % width != 0 || image_md_->YRes () % height != 0 in fillRGB()
75 || (image_md_->XRes () / width) & 0x01 || (image_md_->YRes () / height & 0x01) ) in fillRGB()
85 if (image_md_->XRes() == width && image_md_->YRes() == height) in fillRGB()
106 unsigned yuv_step = image_md_->XRes() / width; in fillRGB()
108 unsigned yuv_skip = (image_md_->YRes() / height - 1) * ( image_md_->XRes() << 1 ); in fillRGB()
128 if (width > image_md_->XRes () || height > image_md_->YRes ()) in fillGrayscale()
131 if (image_md_->XRes () % width != 0 || image_md_->YRes () % height != 0) in fillGrayscale()
138 unsigned yuv_step = image_md_->XRes() / width; in fillGrayscale()
[all …]
H A Dopenni_image_rgb24.cpp20 if (width > image_md_->XRes () || height > image_md_->YRes ()) in fillGrayscale()
21 …("Up-sampling not supported. Request was %d x %d -> %d x %d.", image_md_->XRes (), image_md_->YRes… in fillGrayscale()
23 if (image_md_->XRes () % width == 0 && image_md_->YRes () % height == 0) in fillGrayscale()
25 unsigned src_step = image_md_->XRes () / width; in fillGrayscale()
26 unsigned src_skip = (image_md_->YRes () / height - 1) * image_md_->XRes (); in fillGrayscale()
54 if (width > image_md_->XRes () || height > image_md_->YRes ()) in fillRGB()
55 …("Up-sampling not supported. Request was %d x %d -> %d x %d.", image_md_->XRes (), image_md_->YRes… in fillRGB()
57 if (width == image_md_->XRes () && height == image_md_->YRes ()) in fillRGB()
74 else if (image_md_->XRes () % width == 0 && image_md_->YRes () % height == 0) // downsamplig in fillRGB()
76 unsigned src_step = image_md_->XRes () / width; in fillRGB()
[all …]
H A Dopenni_ir_image.cpp47 if (width > ir_md_->XRes () || height > ir_md_->YRes ()) in fillRaw()
48 …THROW_OPENNI_EXCEPTION ("upsampling not supported: %d x %d -> %d x %d", ir_md_->XRes (), ir_md_->Y… in fillRaw()
50 if (ir_md_->XRes () % width != 0 || ir_md_->YRes () % height != 0) in fillRaw()
51 …wnsampling only supported for integer scale: %d x %d -> %d x %d", ir_md_->XRes (), ir_md_->YRes ()… in fillRaw()
57 …if (width == ir_md_->XRes () && height == ir_md_->YRes () && (line_step == width * sizeof (unsigne… in fillRaw()
67 unsigned xStep = ir_md_->XRes () / width; in fillRaw()
68 unsigned ySkip = (ir_md_->YRes () / height - 1) * ir_md_->XRes (); in fillRaw()
H A Dopenni_image_bayer_grbg.cpp77 if (width > image_md_->XRes () || height > image_md_->YRes ()) in fillGrayscale()
85 if (image_md_->XRes () == width && image_md_->YRes () == height) in fillGrayscale()
88 int line_skip = image_md_->XRes (); in fillGrayscale()
282 unsigned bayerXStep = image_md_->XRes () / width; in fillGrayscale()
304 if (width > image_md_->XRes () || height > image_md_->YRes ()) in fillRGB()
313 if (image_md_->XRes () == width && image_md_->YRes () == height) in fillRGB()
317 int bayer_line_step = image_md_->XRes (); in fillRGB()
318 int bayer_line_step2 = image_md_->XRes () << 1; in fillRGB()
332 if (image_md_->XRes () % width != 0 || image_md_->YRes () % height != 0) in fillRGB()
336 unsigned bayerXStep = image_md_->XRes () / width; in fillRGB()
[all …]
/dports/graphics/fpc-graph/fpc-3.2.2/packages/graph/tests/
H A Ddrawtest.pas36 XRes, YRes: Integer;
43 XRes := AXRes;
57 FreeMem(PixArray[Y], XRes * SizeOf(TPixelColor));
65 for X := 0 to XRes - 1 do
150 TestPutPixel(Random(XRes), Random(YRes), Random(GetMaxColor + 1))
153 … TestHLine(Random(YRes), Random(XRes), Random(XRes), Random(GetMaxColor + 1), Random(NotPut + 1))
155 … TestVLine(Random(XRes), Random(YRes), Random(YRes), Random(GetMaxColor + 1), Random(NotPut + 1));
/dports/lang/fpc-source/fpc-3.2.2/packages/graph/tests/
H A Ddrawtest.pas36 XRes, YRes: Integer;
43 XRes := AXRes;
57 FreeMem(PixArray[Y], XRes * SizeOf(TPixelColor));
65 for X := 0 to XRes - 1 do
150 TestPutPixel(Random(XRes), Random(YRes), Random(GetMaxColor + 1))
153 … TestHLine(Random(YRes), Random(XRes), Random(XRes), Random(GetMaxColor + 1), Random(NotPut + 1))
155 … TestVLine(Random(XRes), Random(YRes), Random(YRes), Random(GetMaxColor + 1), Random(NotPut + 1));
/dports/devel/wininfo/wininfo-0.7/
H A Dconfigure.ac23 # Check for XRes, from xrestop's configure.ac
35 AC_CHECK_LIB(XRes, XResQueryClients, XRES_LIBS=-lXRes found_xres_lib=yes,,
46 AC_CHECK_LIB(XRes, XResQueryClientResources,
56 AC_MSG_ERROR([Cannot find XRes extension library])
62 AC_CHECK_HEADER(X11/extensions/XRes.h,found_xres=yes,,[#include <X11/Xlib.h>])
65 AC_MSG_ERROR([Cannot find XRes extension headers])
/dports/x11/xrestop/xrestop-5e3d606e9e055c2442e90285b6fe7ffdc2f721b8/
H A Dconfigure.ac28 AC_CHECK_LIB(XRes, XResQueryClients, XRES_LIBS=-lXRes found_xres_lib=yes,,
39 AC_CHECK_LIB(XRes, XResQueryClientResources,
49 AC_MSG_ERROR([Cannot find XRes extension library])
55 AC_CHECK_HEADER(X11/extensions/XRes.h,found_xres=yes,,[#include <X11/Xlib.h>])
58 AC_MSG_ERROR([Cannot find XRes extension headers])
/dports/science/InsightToolkit/ITK-5.0.1/Modules/IO/IPL/include/
H A DitkIPLFileNameList.h186 const float XRes, in AddElementToList() argument
196 m_XRes = XRes; in AddElementToList()
205 else if(Math::NotAlmostEquals( XRes, m_XRes ) || in AddElementToList()
267 IPLSetMacroDeclaration(XRes, float);
268 IPLGetMacroDeclaration(XRes, float);
/dports/x11/libXres/libXres-1.2.1/src/
H A DMakefile.am4 XRes.c
18 libXResinclude_HEADERS = $(top_srcdir)/include/X11/extensions/XRes.h
H A DMakefile.in134 am_libXRes_la_OBJECTS = XRes.lo
158 am__depfiles_remade = ./$(DEPDIR)/XRes.Plo
352 XRes.c
363 libXResinclude_HEADERS = $(top_srcdir)/include/X11/extensions/XRes.h
442 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/XRes.Plo@am__quote@ # am--include-marker
626 -rm -f ./$(DEPDIR)/XRes.Plo
672 -rm -f ./$(DEPDIR)/XRes.Plo
/dports/x11/xpra/xpra-4.3/xpra/x11/bindings/
H A Dres_bindings.pyx31 # XRes
33 cdef extern from "X11/extensions/XRes.h":
118 log("found XRes extension")
121 log("found XRes extension version %i.%i", cmajor, cminor)
/dports/www/firefox-legacy/firefox-52.8.0esr/testing/talos/talos/
H A Dcmanager_linux.py126 XRes = 0
134 XRes += data
140 return XRes
/dports/www/firefox-esr/firefox-91.8.0/testing/talos/talos/
H A Dcmanager_linux.py129 XRes = 0
137 XRes += data
143 return XRes
/dports/www/firefox/firefox-99.0/testing/talos/talos/
H A Dcmanager_linux.py129 XRes = 0
137 XRes += data
143 return XRes
/dports/lang/spidermonkey60/firefox-60.9.0/testing/talos/talos/
H A Dcmanager_linux.py128 XRes = 0
136 XRes += data
142 return XRes
/dports/mail/thunderbird/thunderbird-91.8.0/testing/talos/talos/
H A Dcmanager_linux.py129 XRes = 0
137 XRes += data
143 return XRes
/dports/lang/spidermonkey78/firefox-78.9.0/testing/talos/talos/
H A Dcmanager_linux.py128 XRes = 0
136 XRes += data
142 return XRes
/dports/games/NBlood/NBlood-a1689a4/source/blood/src/
H A Dscreen.cpp325 void scrSetGameMode(int vidMode, int XRes, int YRes, int nBits) in scrSetGameMode() argument
329 if (videoSetGameMode(vidMode, XRes, YRes, nBits, 0) < 0) in scrSetGameMode()
331 initprintf("Failure setting video mode %dx%dx%d %s! Trying next mode...\n", XRes, YRes, in scrSetGameMode()
338 if (validmode[i].xdim == XRes && validmode[i].ydim == YRes) in scrSetGameMode()
/dports/x11-toolkits/libwnck/libwnck-2.30.7/
H A Dconfigure.ac133 AC_DEFINE_UNQUOTED(HAVE_XRES, 1, [Define if you have the XRes library])
136 AC_CHECK_LIB(XRes, XResQueryExtension,
139 AC_DEFINE_UNQUOTED(HAVE_XRES, 1, [Define if you have the XRes library])
207 XRes support: ${have_xres}
/dports/astro/phd2/phd2-2.6.10/
H A Dcam_wdm.cpp241 modeNames.Add(wxString::Format("%dx%d (%s) %d fps", modeInfo.XRes, modeInfo.YRes, in SelectDeviceAndMode()
347 wxSize(modeInfo.XRes * 2, modeInfo.YRes) : in Connect()
348 wxSize(modeInfo.XRes, modeInfo.YRes); in Connect()
370 … pFrame->StatusMsg(wxString::Format(_("%d x %d mode activated"), modeInfo.XRes, modeInfo.YRes)); in Connect()
H A Dcam_ioptron.cpp160 if (modeInfo.XRes == 640 && modeInfo.YRes == 960 && in SelectDeviceAndMode()
166 … Debug.Write(wxString::Format("IOPTRON: mode %d: %dx%d (%s) %d fps %s\n", i, modeInfo.XRes, in SelectDeviceAndMode()
/dports/science/InsightToolkit/ITK-5.0.1/Modules/IO/IPL/src/
H A DitkIPLCommonImageIO.cxx460 const float XRes, in AddElementToList() argument
469 m_FilenameList->SetXRes(XRes); in AddElementToList()
478 …else if( itk::Math::NotAlmostEquals( XRes, m_FilenameList->GetXRes() ) || itk::Math::NotAlmostEqua… in AddElementToList()
487 offset, XDim, YDim, XRes, YRes, 0, Key1, Key2); in AddElementToList()
/dports/devel/indi/indi-1.9.1/libs/indibase/
H A Dindiccdchip.h57 return XRes; in getXRes()
389 uint32_t XRes {0};

12345678