Home
last modified time | relevance | path

Searched refs:pickThisCol (Results 1 – 3 of 3) sorted by last modified time

/dports/graphics/openfx-misc/openfx-misc-3ab0531/SupportExt/
H A DofxsMipmap.cpp72 bool pickThisCol = srcBounds.x1 <= (srcx + 0) && (srcx + 0) < srcBounds.x2; in halveWindow() local
74 const int sumW = (int)pickThisCol + (int)pickNextCol; in halveWindow()
83 const PIX a = (pickThisCol && pickThisRow) ? *(srcPixStart + k) : 0; in halveWindow()
85 const PIX c = (pickThisCol && pickNextRow) ? *(srcPixStart + k + srcRowSize) : 0; in halveWindow()
/dports/graphics/openfx-arena/openfx-arena-Natron-2.3.14/SupportExt/
H A DofxsMipmap.cpp72 bool pickThisCol = srcBounds.x1 <= (srcx + 0) && (srcx + 0) < srcBounds.x2; in halveWindow() local
74 const int sumW = (int)pickThisCol + (int)pickNextCol; in halveWindow()
83 const PIX a = (pickThisCol && pickThisRow) ? *(srcPixStart + k) : 0; in halveWindow()
85 const PIX c = (pickThisCol && pickNextRow) ? *(srcPixStart + k + srcRowSize) : 0; in halveWindow()
/dports/graphics/openfx-arena/openfx-arena-Natron-2.3.14/OpenFX-IO/IOSupport/
H A DGenericReader.cpp966 bool pickThisCol = (x * 2) >= (srcBounds.x1); in halveWindow() local
967 int sumW = (int)pickThisCol + (int)pickNextCol; in halveWindow()
973 PIX a = (pickThisCol && pickThisRow) ? srcLineStart[x * 2 * nComponents + k] : 0; in halveWindow()
975 … PIX c = (pickThisCol && pickNextRow) ? srcLineStart[(x * 2 * nComponents) + srcRowSize + k] : 0; in halveWindow()