Searched refs:wrapX (Results 1 – 9 of 9) sorted by relevance
/third_party/skia/src/gpu/effects/ |
D | GrBicubicEffect.h | 55 const GrSamplerState::WrapMode wrapX, 68 const GrSamplerState::WrapMode wrapX, 82 const GrSamplerState::WrapMode wrapX,
|
D | GrBicubicEffect.cpp | 128 const GrSamplerState::WrapMode wrapX, in Make() argument 133 GrSamplerState sampler(wrapX, wrapY, GrSamplerState::Filter::kNearest); in Make() 145 const GrSamplerState::WrapMode wrapX, in MakeSubset() argument 151 GrSamplerState sampler(wrapX, wrapY, GrSamplerState::Filter::kNearest); in MakeSubset() 164 const GrSamplerState::WrapMode wrapX, in MakeSubset() argument 179 GrSamplerState sampler(wrapX, wrapY, GrSamplerState::Filter::kNearest); in MakeSubset()
|
/third_party/skia/src/gpu/ |
D | GrSamplerState.h | 39 constexpr GrSamplerState(WrapMode wrapX, 43 : fWrapModes{wrapX, wrapY}, fFilter(filter), fMipmapMode(mm) {}
|
/third_party/skia/gm/ |
D | hairlines.cpp | 149 int wrapX = 1250 - kMargin; in onDraw() local 162 if (x + bounds.width() > wrapX) { in onDraw()
|
/third_party/flutter/skia/src/gpu/effects/ |
D | GrTextureDomain.h | 84 static bool IsDecalSampled(GrSamplerState::WrapMode wrapX, GrSamplerState::WrapMode wrapY, in IsDecalSampled() argument 86 return wrapX == GrSamplerState::WrapMode::kClampToBorder || in IsDecalSampled()
|
/third_party/flutter/skia/gm/ |
D | hairlines.cpp | 178 int wrapX = 1250 - kMargin; in onDraw() local 191 if (x + bounds.width() > wrapX) { in onDraw()
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
D | es31fShaderImageLoadStoreTests.cpp | 2191 const int wrapX = x % imageWidth; in getCompareArg() local 2194 return wrapX*wrapX + y*y + z*z + curPixelInvocationNdx*42; in getCompareArg() 2204 const string wrapX = "(" + x + "%" + toString(imageWidth) + ")"; in getCompareArgShaderStr() local 2207 …return "(" +wrapX+"*"+wrapX+ " + " +y+"*"+y+ " + " +z+"*"+z+ " + " + curPixelInvocationNdx + "*42)… in getCompareArgShaderStr() 2212 const string wrapX = "(" + x + "%" + toString(imageWidth) + ")"; in getAssignArgShaderStr() local 2215 …return "(" +wrapX+"*"+wrapX+ " + " +y+"*"+y+ " + " +z+"*"+z+ " + " + curPixelInvocationNdx + "*42)… in getAssignArgShaderStr()
|
/third_party/flutter/skia/src/gpu/gl/ |
D | GrGLGpu.cpp | 297 auto wrapX = wrap_mode_to_gl_wrap(state.wrapModeX(), fGpu->glCaps()); in bindSampler() local 303 GR_GL_CALL(fGpu->glInterface(), SamplerParameteri(s, GR_GL_TEXTURE_WRAP_S, wrapX)); in bindSampler() 338 int wrapX = static_cast<int>(state.wrapModeX()); in StateToIndex() local 339 SkASSERT(wrapX >= 0 && wrapX < 4); in StateToIndex() 342 int idx = 16 * filter + 4 * wrapX + wrapY; in StateToIndex()
|
/third_party/skia/src/gpu/gl/ |
D | GrGLGpu.cpp | 256 GrGLenum wrapX = wrap_mode_to_gl_wrap(state.wrapModeX(), fGpu->glCaps()); in bindSampler() local 262 GR_GL_CALL(fGpu->glInterface(), SamplerParameteri(s, GR_GL_TEXTURE_WRAP_S, wrapX)); in bindSampler()
|