Home
last modified time | relevance | path

Searched refs:dstRec (Results 1 – 7 of 7) sorted by relevance

/dports/databases/mysql55-client/mysql-5.5.62/storage/ndb/src/ndbapi/
H A DNdbReceiver.cpp224 NdbReceiver::copyout(NdbReceiver & dstRec){ in copyout() argument
226 NdbRecAttr *dst = dstRec.theFirstRecAttr; in copyout()
/dports/games/jaggedalliance2/ja2-stracciatella-0.18.0/src/sgp/
H A DVSurface.cc433 SGPBox dstRec; in FillVideoSurfaceWithStretch() local
435 dstRec.set(0, 0, dst->Width(), dst->Height()); in FillVideoSurfaceWithStretch()
436 BltStretchVideoSurface(dst, src, &srcRec, &dstRec); in FillVideoSurfaceWithStretch()
/dports/devel/raylib/raylib-3.7.0/src/
H A Dtextures.c2596 if (((int)srcRec.width != (int)dstRec.width) || ((int)srcRec.height != (int)dstRec.height)) in ImageDraw()
2607 if (dstRec.x < 0) in ImageDraw()
2609 srcRec.x = -dstRec.x; in ImageDraw()
2610 srcRec.width += dstRec.x; in ImageDraw()
2611 dstRec.x = 0; in ImageDraw()
2613 else if ((dstRec.x + srcRec.width) > dst->width) srcRec.width = dst->width - dstRec.x; in ImageDraw()
2615 if (dstRec.y < 0) in ImageDraw()
2617 srcRec.y = -dstRec.y; in ImageDraw()
2618 srcRec.height += dstRec.y; in ImageDraw()
2619 dstRec.y = 0; in ImageDraw()
[all …]
H A Dtext.c1038 …Rectangle dstRec = { position.x + font.chars[index].offsetX*scaleFactor - (float)font.charsPadding… in DrawTextCodepoint() local
1049 DrawTexturePro(font.texture, srcRec, dstRec, (Vector2){ 0, 0 }, 0.0f, tint); in DrawTextCodepoint()
H A Draylib.h1253 RLAPI void ImageDraw(Image *dst, Image src, Rectangle srcRec, Rectangle dstRec, Color tint); …
/dports/devel/raylib/raylib-3.7.0/projects/Notepad++/raylib_npp_parser/
H A Draylib_to_parse.h350 RLAPI void ImageDraw(Image *dst, Image src, Rectangle srcRec, Rectangle dstRec, Color tint); …
/dports/devel/raylib/raylib-3.7.0/projects/Geany/
H A Draylib.c.tags198 ImageDraw|void|(Image *dst, Image src, Rectangle srcRec, Rectangle dstRec);|