Home
last modified time | relevance | path

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

/third_party/skia/src/gpu/effects/
DGrBicubicEffect.h55 const GrSamplerState::WrapMode wrapX,
68 const GrSamplerState::WrapMode wrapX,
82 const GrSamplerState::WrapMode wrapX,
DGrBicubicEffect.cpp128 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/
DGrSamplerState.h39 constexpr GrSamplerState(WrapMode wrapX,
43 : fWrapModes{wrapX, wrapY}, fFilter(filter), fMipmapMode(mm) {}
/third_party/skia/gm/
Dhairlines.cpp149 int wrapX = 1250 - kMargin; in onDraw() local
162 if (x + bounds.width() > wrapX) { in onDraw()
/third_party/flutter/skia/src/gpu/effects/
DGrTextureDomain.h84 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/
Dhairlines.cpp178 int wrapX = 1250 - kMargin; in onDraw() local
191 if (x + bounds.width() > wrapX) { in onDraw()
/third_party/vk-gl-cts/modules/gles31/functional/
Des31fShaderImageLoadStoreTests.cpp2191 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/
DGrGLGpu.cpp297 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/
DGrGLGpu.cpp256 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()