Home
last modified time | relevance | path

Searched refs:invWidth (Results 1 – 9 of 9) sorted by relevance

/external/skqp/src/core/
DSkScan_Path.cpp321 int invWidth = fLastX - fPrevX; in prepost() local
322 if (invWidth > 0) { in prepost()
323 fBlitter->blitH(fPrevX, y, invWidth); in prepost()
330 int invWidth = x - fPrevX; in blitH() local
331 if (invWidth > 0) { in blitH()
332 fBlitter->blitH(fPrevX, y, invWidth); in blitH()
/external/skia/src/core/
DSkScan_Path.cpp320 int invWidth = fLastX - fPrevX; in prepost() local
321 if (invWidth > 0) { in prepost()
322 fBlitter->blitH(fPrevX, y, invWidth); in prepost()
329 int invWidth = x - fPrevX; in blitH() local
330 if (invWidth > 0) { in blitH()
331 fBlitter->blitH(fPrevX, y, invWidth); in blitH()
DSkRasterPipeline.h153 float invWidth, invHeight; member
DSkGpuBlurUtils.cpp812 const float invWidth = 1.f / width; in CreateIntegralTable() local
814 float x = (i + 0.5f) * invWidth; in CreateIntegralTable()
/external/aac/libSBRdec/src/
Denv_calc.cpp1995 FIXP_SGL invWidth; in calcNrgPerSubband() local
2002 invWidth = FX_DBL2FX_SGL(GetInvInt(next_pos - start_pos)); in calcNrgPerSubband()
2090 *nrgEst++ = fMult(sum, invWidth); in calcNrgPerSubband()
2123 FIXP_SGL invWidth; in calcNrgPerSfb() local
2134 invWidth = FX_DBL2FX_SGL(GetInvInt(next_pos - start_pos)); in calcNrgPerSfb()
2203 sum = fMult(sum, invWidth); in calcNrgPerSfb()
/external/skia/src/shaders/
DSkImageShader.cpp643 ctx->invWidth = 1.0f / ctx->width; in doStages()
670 ctx->invWidth = 1.0f / ctx->width; in doStages()
/external/skia/src/gpu/gl/
DGrGLGpu.cpp3512 const float invWidth = 1.0f / width; in onRegenerateMipMapLevels() local
3515 invWidth, (width - 1) * invWidth, invHeight, (height - 1) * invHeight)); in onRegenerateMipMapLevels()
/external/skqp/src/gpu/gl/
DGrGLGpu.cpp3863 const float invWidth = 1.0f / width; in onRegenerateMipMapLevels() local
3866 invWidth, (width - 1) * invWidth, invHeight, (height - 1) * invHeight)); in onRegenerateMipMapLevels()
/external/skia/src/opts/
DSkRasterPipeline_opts.h2695 x = tile(x, ctx->tileX, ctx->width , ctx->invWidth ); in sample()