Home
last modified time | relevance | path

Searched refs:originx (Results 1 – 25 of 195) sorted by relevance

12345678

/dports/graphics/urt/urt-3.1b1_12/get/cx3d/
H A Dgetcx3d.c68 originx+start, originx+stop,
74 int y, magnification, originx, originy;
95 originx, originy, gamma_value );
117 int magnification, originx, originy; in background()
134 originx+hdr.xmin,
139 originx+hdr.xmin, originx+hdr.xmax,
254 originx, originy, gamma_value );
315 originx, originy, gamma_value );
320 originx = originy = 0;
326 originx, originy, gamma_value );
[all …]
/dports/editors/yudit/yudit-3.0.7/swindow/
H A DSGPrimitive.cpp78 SGPrimitive::getKey (double originx, double originy) const in getKey() argument
97 params[0] - originx, params[1] - originy, in getKey()
98 params[2] - originx, params[3] - originy, in getKey()
99 params[4] - originx, params[5] - originy); in getKey()
120 params[0] - originx, params[1] - originy); in getKey()
170 SGPrimitive::getOriginX (double originx) in getOriginX() argument
176 if (params[0] < originx) return params[0]; in getOriginX()
179 if (params[0] < originx) return params[0]; in getOriginX()
180 if (params[2] < originx) return params[2]; in getOriginX()
181 if (params[4] < originx) return params[4]; in getOriginX()
[all …]
H A DSGPrimitive.h46 SString getKey(double originx, double originy) const;
47 double getOriginX (double originx);
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/platform/graphics/cg/
H A DImageBufferDataCG.cpp123 int originx = rect.x(); in getData() local
125 if (originx < 0) { in getData()
126 destx = -originx; in getData()
127 originx = 0; in getData()
132 int width = endx - originx; in getData()
156 srcRows = reinterpret_cast<unsigned char*>(m_data) + originy * srcBytesPerRow + originx * 4; in getData()
196 …Rows = (unsigned char*)(IOSurfaceGetBaseAddress(surface)) + originy * srcBytesPerRow + originx * 4; in getData()
260 int originx = sourceRect.x(); in putData() local
264 ASSERT(originx >= 0); in putData()
265 ASSERT(originx <= sourceRect.maxX()); in putData()
[all …]
/dports/games/ecwolf/ecwolf-1.3.3-src/src/textures/
H A Dbitmap.cpp218 bool ClipCopyPixelRect(const FClipRect *cr, int &originx, int &originy, in ClipCopyPixelRect() argument
301 if (originx < cr->x) in ClipCopyPixelRect()
303 int skip = cr->x - originx; in ClipCopyPixelRect()
307 originx = cr->x; in ClipCopyPixelRect()
310 if (originx + srcwidth > cr->x + cr->width) in ClipCopyPixelRect()
312 srcwidth = cr->x + cr->width - originx; in ClipCopyPixelRect()
371 void FBitmap::CopyPixelDataRGB(int originx, int originy, const BYTE *patch, int srcwidth, in CopyPixelDataRGB() argument
374 …if (ClipCopyPixelRect(&ClipRect, originx, originy, patch, srcwidth, srcheight, step_x, step_y, rot… in CopyPixelDataRGB()
376 BYTE *buffer = data + 4 * originx + Pitch * originy; in CopyPixelDataRGB()
434 void FBitmap::CopyPixelData(int originx, int originy, const BYTE * patch, int srcwidth, int srcheig… in CopyPixelData() argument
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/platform/graphics/qt/
H A DImageBufferQt.cpp208 int originx = rect.x(); in getImageData() local
210 if (originx < 0) { in getImageData()
211 destx = -originx; in getImageData()
212 originx = 0; in getImageData()
217 int numColumns = endx - originx; in getImageData()
244 QRgb pixel = scanLine[x + originx]; in getImageData()
266 QRgb pixel = scanLine[x + originx]; in getImageData()
310 int originx = sourceRect.x(); in putImageData() local
314 ASSERT(originx >= 0); in putImageData()
315 ASSERT(originx <= sourceRect.maxX()); in putImageData()
[all …]
/dports/games/zdoom/zdoom-2.8.1/src/textures/
H A Dbitmap.cpp221 bool ClipCopyPixelRect(const FClipRect *cr, int &originx, int &originy, in ClipCopyPixelRect() argument
304 if (originx < cr->x) in ClipCopyPixelRect()
306 int skip = cr->x - originx; in ClipCopyPixelRect()
310 originx = cr->x; in ClipCopyPixelRect()
313 if (originx + srcwidth > cr->x + cr->width) in ClipCopyPixelRect()
315 srcwidth = cr->x + cr->width - originx; in ClipCopyPixelRect()
374 void FBitmap::CopyPixelDataRGB(int originx, int originy, const BYTE *patch, int srcwidth, in CopyPixelDataRGB() argument
378 …if (ClipCopyPixelRect(&ClipRect, originx, originy, patch, srcwidth, srcheight, step_x, step_y, rot… in CopyPixelDataRGB()
380 BYTE *buffer = data + 4 * originx + Pitch * originy; in CopyPixelDataRGB()
438 void FBitmap::CopyPixelData(int originx, int originy, const BYTE * patch, int srcwidth, int srcheig… in CopyPixelData() argument
[all …]
/dports/games/prboom/prboom-2.5.0/src/
H A Dgl_texture.c202 if ((xs+originx)>=gltexture->realtexwidth) in gld_AddPatchToTexture_UnTranslated()
204 if ((xe+originx)<=0) in gld_AddPatchToTexture_UnTranslated()
206 if ((xs+originx)<0) in gld_AddPatchToTexture_UnTranslated()
207 xs=-originx; in gld_AddPatchToTexture_UnTranslated()
208 if ((xe+originx)>gltexture->realtexwidth) in gld_AddPatchToTexture_UnTranslated()
209 xe+=(gltexture->realtexwidth-(xe+originx)); in gld_AddPatchToTexture_UnTranslated()
296 if ((xs+originx)>=gltexture->realtexwidth) in gld_AddPatchToTexture()
298 if ((xe+originx)<=0) in gld_AddPatchToTexture()
300 if ((xs+originx)<0) in gld_AddPatchToTexture()
301 xs=-originx; in gld_AddPatchToTexture()
[all …]
/dports/games/brainparty/brainparty/
H A DTexture.cpp192 float originx = texwidth / 2; in Draw() local
204 -originx, texheight - originy, 0.0f, in Draw()
205 texwidth - originx, texheight - originy, 0.0f, in Draw()
206 -originx, -originy, 0.0f, in Draw()
207 texwidth - originx, -originy, 0.0f in Draw()
/dports/math/vtk9/VTK-9.1.0/Rendering/Core/
H A DvtkImageMapper3D.cxx1070 void vtkImageMapper3D::CheckerboardRGBA(unsigned char* data, int xsize, int ysize, double originx, in CheckerboardRGBA() argument
1077 originx += 1.0 + tol; in CheckerboardRGBA()
1080 originx = (originx > minval ? originx : minval); in CheckerboardRGBA()
1081 originx = (originx < maxval ? originx : maxval); in CheckerboardRGBA()
1102 originx -= ceil(originx / spacing2x) * spacing2x; in CheckerboardRGBA()
1103 while (originx < 0) in CheckerboardRGBA()
1105 originx += spacing2x; in CheckerboardRGBA()
1112 double tmporiginx = originx - spacingx; in CheckerboardRGBA()
1113 originx = (tmporiginx < 0 ? originx : tmporiginx); in CheckerboardRGBA()
1120 int xm = static_cast<int>(originx); in CheckerboardRGBA()
[all …]
/dports/math/vtk8/VTK-8.2.0/Rendering/Core/
H A DvtkImageMapper3D.cxx1110 double originx, double originy, double spacingx, double spacingy) in CheckerboardRGBA() argument
1116 originx += 1.0 + tol; in CheckerboardRGBA()
1119 originx = (originx > minval ? originx : minval); in CheckerboardRGBA()
1120 originx = (originx < maxval ? originx : maxval); in CheckerboardRGBA()
1141 originx -= ceil(originx/spacing2x)*spacing2x; in CheckerboardRGBA()
1142 while (originx < 0) { originx += spacing2x; } in CheckerboardRGBA()
1145 double tmporiginx = originx - spacingx; in CheckerboardRGBA()
1146 originx = (tmporiginx < 0 ? originx : tmporiginx); in CheckerboardRGBA()
1153 int xm = static_cast<int>(originx); in CheckerboardRGBA()
1156 double gx = originx - xm; in CheckerboardRGBA()
/dports/math/vtk6/VTK-6.2.0/Rendering/Core/
H A DvtkImageMapper3D.cxx1105 double originx, double originy, double spacingx, double spacingy) in CheckerboardRGBA() argument
1111 originx += 1.0 + tol; in CheckerboardRGBA()
1114 originx = (originx > minval ? originx : minval); in CheckerboardRGBA()
1115 originx = (originx < maxval ? originx : maxval); in CheckerboardRGBA()
1136 originx -= ceil(originx/spacing2x)*spacing2x; in CheckerboardRGBA()
1137 while (originx < 0) { originx += spacing2x; } in CheckerboardRGBA()
1140 double tmporiginx = originx - spacingx; in CheckerboardRGBA()
1141 originx = (tmporiginx < 0 ? originx : tmporiginx); in CheckerboardRGBA()
1148 int xm = static_cast<int>(originx); in CheckerboardRGBA()
1151 double gx = originx - xm; in CheckerboardRGBA()
/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/examples/
H A Dex_emplike_2.py54 originx = np.random.standard_normal((30, 3)) variable
56 originy = np.dot(originx, originbeta) + np.random.standard_normal((30, 1))
58 originmodel = sm.emplike.ELOriginRegress(originy, originx)
/dports/games/lincity/lincity-1.13.1/
H A Dshrtypes.c78 connect_transport (int originx, int originy, int w, int h) in connect_transport() argument
120 if (originx <= 0) { in connect_transport()
121 w -= 1 - originx; in connect_transport()
122 originx = 1; in connect_transport()
128 if (originx + w >= WORLD_SIDE_LEN) { in connect_transport()
129 w = WORLD_SIDE_LEN - originx; in connect_transport()
135 for (x = originx; x < originx + w; x++) { in connect_transport()
/dports/games/golly/golly-3.3-src/Scripts/Lua/
H A Dpop-plot.lua43 local originx = lborder
105 ovt{"paste", x+originx, y+originy, "textclip"}
121 ovt{"line", x1+originx, y1+originy, x2+originx, y2+originy}
128 x = x + originx
282 pastetext(x - originx, y - originy)
/dports/games/prboom-plus/prboom-plus-2.5.1.3/src/
H A Dgl_texture.c308 if ((xs+originx)>=gltexture->realtexwidth) in gld_AddPatchToTexture_UnTranslated()
310 if ((xe+originx)<=0) in gld_AddPatchToTexture_UnTranslated()
312 if ((xs+originx)<0) in gld_AddPatchToTexture_UnTranslated()
313 xs=-originx; in gld_AddPatchToTexture_UnTranslated()
314 if ((xe+originx)>gltexture->realtexwidth) in gld_AddPatchToTexture_UnTranslated()
315 xe+=(gltexture->realtexwidth-(xe+originx)); in gld_AddPatchToTexture_UnTranslated()
417 if ((xs+originx)>=gltexture->realtexwidth) in gld_AddPatchToTexture()
419 if ((xe+originx)<=0) in gld_AddPatchToTexture()
421 if ((xs+originx)<0) in gld_AddPatchToTexture()
422 xs=-originx; in gld_AddPatchToTexture()
[all …]
/dports/games/SRB2/SRB2-SRB2_release_2.2.9/tools/wadconv/
H A Dwadconv.c35 wad_int16_t originx, originy; member
61 wad_uint16_t originx, originy; member
163 patch->originx = WAD_INT16_Endianness(mpatch->originx); in ConvertTextures()
231 fprintf(socfile, "X = %i\n", textures[i]->patches[j].originx); in ConvertTextures()
/dports/games/vavoom/vavoom-1.33/utils/common/
H A Dftexdefs.h38 short originx; member
61 short originx; member
/dports/games/blockattack/blockattack-game-2.7.0/Game/data/sprites/
H A Dblockattack.sprite152 "originx" : 57,
164 "originx" : 4,
175 "originx" : 1,
/dports/emulators/dosbox/dosbox-0.74-3/src/hardware/
H A Dvga_s3.cpp106 vga.s3.hgc.originx = (vga.s3.hgc.originx & 0x00ff) | (val << 8); in SVGA_S3_WriteCRTC()
109 vga.s3.hgc.originx = (vga.s3.hgc.originx & 0xff00) | val; in SVGA_S3_WriteCRTC()
396 return vga.s3.hgc.originx>>8; in SVGA_S3_ReadCRTC()
398 return vga.s3.hgc.originx&0xff; in SVGA_S3_ReadCRTC()
/dports/games/libretro-dosbox/dosbox-libretro-aa71b67/src/hardware/
H A Dvga_s3.cpp105 vga.s3.hgc.originx = (vga.s3.hgc.originx & 0x00ff) | (val << 8); in SVGA_S3_WriteCRTC()
108 vga.s3.hgc.originx = (vga.s3.hgc.originx & 0xff00) | val; in SVGA_S3_WriteCRTC()
395 return vga.s3.hgc.originx>>8; in SVGA_S3_ReadCRTC()
397 return vga.s3.hgc.originx&0xff; in SVGA_S3_ReadCRTC()
/dports/graphics/evince/evince-41.3/backend/dvi/mdvi-lib/
H A Dsp-epsf.c87 double originx; in parse_epsf_special() local
190 originx = 0; in parse_epsf_special()
202 originx = value[HOFF]; in parse_epsf_special()
224 box->ox = originx; in parse_epsf_special()
/dports/print/xreader/xreader-3.2.2/backend/dvi/mdvi-lib/
H A Dsp-epsf.c87 double originx; in parse_epsf_special() local
190 originx = 0; in parse_epsf_special()
202 originx = value[HOFF]; in parse_epsf_special()
224 box->ox = originx; in parse_epsf_special()
/dports/graphics/atril-lite/atril-1.26.0/backend/dvi/mdvi-lib/
H A Dsp-epsf.c86 double originx; in parse_epsf_special() local
189 originx = 0; in parse_epsf_special()
201 originx = value[HOFF]; in parse_epsf_special()
223 box->ox = originx; in parse_epsf_special()
/dports/graphics/atril/atril-1.26.0/backend/dvi/mdvi-lib/
H A Dsp-epsf.c86 double originx; in parse_epsf_special() local
189 originx = 0; in parse_epsf_special()
201 originx = value[HOFF]; in parse_epsf_special()
223 box->ox = originx; in parse_epsf_special()

12345678