Home
last modified time | relevance | path

Searched refs:remX (Results 1 – 12 of 12) sorted by relevance

/dports/games/spring/spring_98.0/AI/Skirmish/KAIK/
H A DSpotFinder.cpp193 int remX = x - xend[a] - 1; in MakeSumMap() local
196 if (remX >= 0) in MakeSumMap()
197 TotalMetal -= MexArrayA[sy * MapWidth + remX]; in MakeSumMap()
363 int remX = x-xend[a] -1; in UpdateSumMapArea() local
366 if(remX >= 0) in UpdateSumMapArea()
367 TotalMetal -= MexArrayA[sy * MapWidth + remX]; in UpdateSumMapArea()
455 int remX = x - xend[a] - 1; in UpdateSumMap() local
459 if (remX >= 0) in UpdateSumMap()
460 TotalMetal -= MexArrayA[sy * MapWidth + remX]; in UpdateSumMap()
H A DMetalMap.cpp186 int remX = x - xend[a] - 1; in GetMetalPoints() local
190 if (remX >= 0) in GetMetalPoints()
191 TotalMetal -= MexArrayA[sy * MetalMapWidth + remX]; in GetMetalPoints()
433 int remX = x - xend[a] - 1; in GetMetalPoints() local
437 if (remX >= 0) in GetMetalPoints()
438 TotalMetal -= MexArrayA[sy * MetalMapWidth + remX]; in GetMetalPoints()
/dports/multimedia/olive/olive-0.1.2/effects/shaders/
H A Dcrossstitch.frag17 int remX = int(mod(cPos.x, size));
19 if (remX == 0 && remY == 0)
23 if ((remX == remY) ||
/dports/devel/raylib/raylib-3.7.0/examples/shaders/resources/shaders/glsl100/
H A Dcross_stitching.fs30 int remX = int(mod(cPos.x, size));
33 if (remX == 0 && remY == 0) tlPos = cPos;
38 if ((remX == remY) || (((int(cPos.x) - int(blPos.x)) == (int(blPos.y) - int(cPos.y)))))
/dports/devel/raylib/raylib-3.7.0/examples/shaders/resources/shaders/glsl330/
H A Dcross_stitching.fs32 int remX = int(mod(cPos.x, size));
35 if (remX == 0 && remY == 0) tlPos = cPos;
40 if ((remX == remY) || (((int(cPos.x) - int(blPos.x)) == (int(blPos.y) - int(cPos.y)))))
/dports/devel/raylib/raylib-3.7.0/examples/shaders/resources/shaders/glsl120/
H A Dcross_stitching.fs28 int remX = int(mod(cPos.x, size));
31 if (remX == 0 && remY == 0) tlPos = cPos;
36 if ((remX == remY) || (((int(cPos.x) - int(blPos.x)) == (int(blPos.y) - int(cPos.y)))))
/dports/games/spring/spring_98.0/rts/Sim/Misc/
H A DResourceMapAnalyzer.cpp231 const int remX = x - xend[a] - 1; in GetResourcePoints() local
236 if (remX >= 0) { in GetResourcePoints()
237 totalResources -= rexArrayA[sy * mapWidth + remX]; in GetResourcePoints()
488 int remX = x - xend[a] - 1; in GetResourcePoints() local
493 if (remX >= 0) { in GetResourcePoints()
494 totalResources -= rexArrayA[sy * mapWidth + remX]; in GetResourcePoints()
/dports/devel/kpublictransport/kpublictransport-21.12.3/src/lib/backends/
H A Dhafasmgateparser.cpp168 const auto remX = msgObj.value(QLatin1String("remX")).toInt(); in processMessageList() local
169 if (static_cast<size_t>(remX) >= source->size()) { in processMessageList()
170 qCDebug(Log) << "Invalid message index:" << remX << msgType; in processMessageList()
173 const auto &msg = (*source)[remX]; in processMessageList()
/dports/games/openrct2/OpenRCT2-0.3.5.1/src/openrct2-ui/drawing/engines/opengl/
H A DOpenGLDrawingEngine.cpp1073 _clipLeft = static_cast<int32_t>(bitsOffset % bytesPerRow) + dpi->remX; in CalculcateClipping()
1079 _spriteOffset.x = _clipLeft - dpi->remX; in CalculcateClipping()
/dports/games/openrct2/OpenRCT2-0.3.5.1/src/openrct2/drawing/
H A DDrawing.h119 uint8_t remX{};
/dports/math/mathmod/mathmod-11.1/pariso/isosurface/
H A DIso3D.cpp666 uint remX= (iFinish-iStart)%nbX; in VoxelEvaluation() local
675 if((remX>0) && ((Iindice+remX)==(iFinish))) in VoxelEvaluation()
677 nbX = remX; in VoxelEvaluation()
/dports/games/openrct2/OpenRCT2-0.3.5.1/src/openrct2/interface/
H A DViewport.cpp978 dpi1.remX = std::max(0, dpi->x - x); in viewport_paint()