Home
last modified time | relevance | path

Searched refs:getWrapS (Results 1 – 19 of 19) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/libANGLE/
DSampler.cpp77 GLenum Sampler::getWrapS() const in getWrapS() function in gl::Sampler
79 return mState.getWrapS(); in getWrapS()
DSampler.h45 GLenum getWrapS() const;
DTexture.cpp364 if ((samplerState.getWrapS() != GL_CLAMP_TO_EDGE && in computeSamplerCompleteness()
365 samplerState.getWrapS() != GL_CLAMP_TO_BORDER && !isPow2(baseImageDesc.size.width)) || in computeSamplerCompleteness()
410 if (samplerState.getWrapS() != GL_CLAMP_TO_EDGE || in computeSamplerCompleteness()
880 GLenum Texture::getWrapS() const in getWrapS() function in gl::Texture
882 return mState.mSamplerState.getWrapS(); in getWrapS()
DTexture.h290 GLenum getWrapS() const;
Dangletypes.h338 GLenum getWrapS() const { return mWrapS; } in getWrapS() function
Dqueryutils.cpp270 *params = CastFromGLintStateValue<ParamType>(pname, texture->getWrapS()); in QueryTexParameterBase()
506 *params = CastFromGLintStateValue<ParamType>(pname, sampler->getWrapS()); in QuerySamplerParameterBase()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
DSampler.h60 GLenum getWrapS() const { return mWrapModeS; } in getWrapS() function
DTexture.h127 GLenum getWrapS() const { return mWrapS; } in getWrapS() function
DContext.cpp1817 case GL_TEXTURE_WRAP_S: return static_cast<GLint>(samplerObject->getWrapS()); in getSamplerParameteri()
1840 case GL_TEXTURE_WRAP_S: return static_cast<GLfloat>(samplerObject->getWrapS()); in getSamplerParameterf()
3169 wrapS = samplerObject->getWrapS(); in applyTextures()
3182 wrapS = texture->getWrapS(); in applyTextures()
DlibGLESv2.cpp3308 *params = (GLfloat)texture->getWrapS(); in GetTexParameterfv()
3388 *params = texture->getWrapS(); in GetTexParameteriv()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
DSamplerGL.cpp95 …ID, mState, mAppliedSamplerState, GL_TEXTURE_WRAP_S, &gl::SamplerState::getWrapS, &gl::SamplerStat… in syncState()
DTextureGL.cpp1469 mAppliedSampler.setWrapS(mState.getSamplerState().getWrapS()); in syncState()
1472 GL_TEXTURE_WRAP_S, mAppliedSampler.getWrapS())); in syncState()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
DRenderStateCache.cpp283 samplerDesc.AddressU = gl_d3d11::ConvertTextureWrap(samplerState.getWrapS()); in getSamplerState()
DStateManager11.cpp422 GLenum wrapS = samplerState.getWrapS(); in updateSamplerMetadata()
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/
DFrameCapture.cpp2744 if (textureSamplerState.getWrapS() != defaultSamplerState.getWrapS()) in CaptureShareGroupMidExecutionSetup()
2746 capTexParam(GL_TEXTURE_WRAP_S, textureSamplerState.getWrapS()); in CaptureShareGroupMidExecutionSetup()
3097 if (sampler->getWrapS() != defaultSamplerState.getWrapS()) in CaptureShareGroupMidExecutionSetup()
3100 sampler->getWrapS())); in CaptureShareGroupMidExecutionSetup()
Dframe_capture_utils.cpp736 json->addScalar("WrapS", samplerState.getWrapS()); in SerializeSamplerState()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/
Dmtl_state_cache.mm456 sAddressMode = GetSamplerAddressMode(glState.getWrapS());
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
DRenderer9.cpp1006 gl_d3d9::ConvertTextureWrap(samplerState.getWrapS())); in setSamplerState()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
Dvk_cache_utils.cpp3312 SetBitField(mAddressModeU, gl_vk::GetSamplerAddressMode(samplerState.getWrapS())); in update()