HomeSort by relevance Sort by last modified time
    Searched refs:wrapS (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /frameworks/rs/
rsSampler.cpp 33 RsSamplerValue wrapS,
39 mHal.state.wrapS = wrapS;
81 RsSamplerValue wrapS,
91 if (existing->mHal.state.wrapS != wrapS) continue;
107 Sampler *s = new (allocMem) Sampler(rsc, magFilter, minFilter, wrapS, wrapT, wrapR, aniso);
138 RsSamplerValue wrapS,
143 wrapS, wrapT, wrapR, aniso);
rsSampler.h 45 RsSamplerValue wrapS;
59 RsSamplerValue wrapS,
81 RsSamplerValue wrapS,
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
UT_sampler.java 28 Sampler wrapS;
58 wrapS = b.create();
70 s.set_wrapS(wrapS);
107 _RS_ASSERT("wrapS.getMagnification() == Sampler.Value.NEAREST",
108 wrapS.getMagnification() == Sampler.Value.NEAREST);
109 _RS_ASSERT("wrapS.getMinification() == Sampler.Value.NEAREST",
110 wrapS.getMinification() == Sampler.Value.NEAREST);
111 _RS_ASSERT("wrapS.getWrapS() == Sampler.Value.WRAP",
112 wrapS.getWrapS() == Sampler.Value.WRAP);
113 _RS_ASSERT("wrapS.getWrapT() == Sampler.Value.CLAMP"
    [all...]
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_sampler.java 28 Sampler wrapS;
58 wrapS = b.create();
70 s.set_wrapS(wrapS);
107 _RS_ASSERT("wrapS.getMagnification() == Sampler.Value.NEAREST",
108 wrapS.getMagnification() == Sampler.Value.NEAREST);
109 _RS_ASSERT("wrapS.getMinification() == Sampler.Value.NEAREST",
110 wrapS.getMinification() == Sampler.Value.NEAREST);
111 _RS_ASSERT("wrapS.getWrapS() == Sampler.Value.WRAP",
112 wrapS.getWrapS() == Sampler.Value.WRAP);
113 _RS_ASSERT("wrapS.getWrapT() == Sampler.Value.CLAMP"
    [all...]
  /frameworks/base/libs/hwui/
Texture.cpp 41 void Texture::setWrapST(GLenum wrapS, GLenum wrapT, bool bindTexture, bool force,
44 if (mFirstWrap || force || wrapS != mWrapS || wrapT != mWrapT) {
47 mWrapS = wrapS;
54 glTexParameteri(renderTarget, GL_TEXTURE_WRAP_S, wrapS);
ProgramCache.h 55 void generateTextureWrap(String8& shader, GLenum wrapS, GLenum wrapT);
SkiaShader.cpp 58 static inline void bindTexture(Caches* caches, Texture* texture, GLenum wrapS, GLenum wrapT) {
60 texture->setWrapST(wrapS, wrapT);
207 GLenum wrapS;
221 GLenum wrapS, wrapT;
236 wrapS = GL_CLAMP_TO_EDGE;
239 wrapS = gTileModes[tileModes[0]];
246 shaderInfo->wrapS = wrapS;
289 bindTexture(caches, texture, shaderInfo.wrapS, shaderInfo.wrapT);
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/
rsSampler.h 45 RsSamplerValue wrapS;
59 RsSamplerValue wrapS,
81 RsSamplerValue wrapS,
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/
rsSampler.h 45 RsSamplerValue wrapS;
59 RsSamplerValue wrapS,
81 RsSamplerValue wrapS,
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/
rsSampler.h 45 RsSamplerValue wrapS;
59 RsSamplerValue wrapS,
81 RsSamplerValue wrapS,
  /external/deqp/modules/gles3/functional/
es3fTextureWrapTests.cpp 84 TextureWrapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* description, deUint32 format, deUint32 dataType, deUint32 wrapS, deUint32 wrapT, deUint32 minFilter, deUint32 magFilter, int width, int height);
85 TextureWrapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* description, deUint32 wrapS, deUint32 wrapT, deUint32 minFilter, deUint32 magFilter, const std::vector<std::string>& filenames);
86 TextureWrapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* description, CompressedTexture::Format compressedFormat, deUint32 wrapS, deUint32 wrapT, deUint32 minFilter, deUint32 magFilter, int width, int height);
128 TextureWrapCase::TextureWrapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* description, deUint32 format, deUint32 dataType, deUint32 wrapS, deUint32 wrapT, deUint32 minFilter, deUint32 magFilter, int width, int height)
135 , m_wrapS (wrapS)
147 TextureWrapCase::TextureWrapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* description, deUint32 wrapS, deUint32 wrapT, deUint32 minFilter, deUint32 magFilter, const std::vector<std::string>& filenames)
154 , m_wrapS (wrapS)
167 TextureWrapCase::TextureWrapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* description, CompressedTexture::Format compressedFormat, deUint32 wrapS, deUint32 wrapT, deUint32 minFilter, deUint32 magFilter, int width, int height)
174 , m_wrapS (wrapS)
412 FOR_EACH(wrapS, wrapModes
    [all...]
  /external/deqp/framework/opengl/
gluTextureUtil.hpp 62 tcu::Sampler mapGLSampler (deUint32 wrapS, deUint32 minFilter, deUint32 magFilter);
63 tcu::Sampler mapGLSampler (deUint32 wrapS, deUint32 wrapT, deUint32 minFilter, deUint32 magFilter);
64 tcu::Sampler mapGLSampler (deUint32 wrapS, deUint32 wrapT, deUint32 wrapR, deUint32 minFilter, deUint32 magFilter);
  /external/chromium_org/third_party/angle/src/libGLESv2/
Sampler.cpp 35 samplerState->wrapS = mWrapS;
Sampler.h 26 void setWrapS(GLenum wrapS) { mWrapS = wrapS; }
  /external/deqp/modules/gles3/performance/
es3pTextureCases.hpp 46 deUint32 wrapS,
es3pTextureCountTests.cpp 73 deUint32 wrapS = GL_CLAMP_TO_EDGE;
81 addChild(new Texture2DRenderCase(m_context, name.c_str(), description.c_str(), format, wrapS, wrapT, minFilter, magFilter, tcu::Mat3(), numTextures, false /* npot */));
es3pTextureFormatTests.cpp 111 deUint32 wrapS = GL_CLAMP_TO_EDGE;
118 addChild(new Texture2DRenderCase(m_context, nameBase.c_str(), descriptionBase.c_str(), format, wrapS, wrapT, minFilter, magFilter, tcu::Mat3(), numTextures, false /* npot */));
es3pTextureFilteringTests.cpp 88 deUint32 wrapS = GL_REPEAT;
94 addChild(new Texture2DRenderCase(m_context, name.c_str(), "", format, wrapS, wrapT, minFilter, magFilter, minify ? minTransform : magTransform, numTextures, true /* pot */));
  /external/deqp/modules/gles2/performance/
es2pTextureCountTests.cpp 72 deUint32 wrapS = GL_CLAMP_TO_EDGE;
80 addChild(new Texture2DRenderCase(m_context, name.c_str(), description.c_str(), format, dataType, wrapS, wrapT, minFilter, magFilter, tcu::Mat3(), numTextures, false /* npot */));
es2pTextureFormatTests.cpp 72 deUint32 wrapS = GL_CLAMP_TO_EDGE;
79 addChild(new Texture2DRenderCase(m_context, nameBase.c_str(), descriptionBase.c_str(), format, dataType, wrapS, wrapT, minFilter, magFilter, tcu::Mat3(), numTextures, false /* npot */));
es2pTextureCases.hpp 44 deUint32 wrapS, deUint32 wrapT,
es2pTextureFilteringTests.cpp 88 deUint32 wrapS = GL_REPEAT;
94 addChild(new Texture2DRenderCase(m_context, name.c_str(), "", format, dataType, wrapS, wrapT, minFilter, magFilter, minify ? minTransform : magTransform, numTextures, true /* pot */));
  /external/deqp/modules/gles2/functional/
es2fTextureWrapTests.cpp 59 TextureWrapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* description, deUint32 format, deUint32 dataType, deUint32 wrapS, deUint32 wrapT, deUint32 minFilter, deUint32 magFilter, int width, int height);
60 TextureWrapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* description, deUint32 wrapS, deUint32 wrapT, deUint32 minFilter, deUint32 magFilter, const std::vector<std::string>& filenames);
89 TextureWrapCase::TextureWrapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* description, deUint32 format, deUint32 dataType, deUint32 wrapS, deUint32 wrapT, deUint32 minFilter, deUint32 magFilter, int width, int height)
95 , m_wrapS (wrapS)
106 TextureWrapCase::TextureWrapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* description, deUint32 wrapS, deUint32 wrapT, deUint32 minFilter, deUint32 magFilter, const std::vector<std::string>& filenames)
112 , m_wrapS (wrapS)
285 FOR_EACH(wrapS, wrapModes,
291 bool is_clamp_clamp = (wrapModes[wrapS].mode == GL_CLAMP_TO_EDGE && wrapModes[wrapT].mode == GL_CLAMP_TO_EDGE);
292 bool is_repeat_mirror = (wrapModes[wrapS].mode == GL_REPEAT && wrapModes[wrapT].mode == GL_MIRRORED_REPEAT);
300 string name = string("") + wrapModes[wrapS].name + "_" + wrapModes[wrapT].name + "_" + filteringModes[filter].name + "_" + sizes[size].name + (…)
    [all...]
  /frameworks/rs/driver/runtime/
rs_sample.c 423 rs_sampler_value wrapS,
446 uint32_t next = wrapI(wrapS, iPixel + 1, sourceW);
447 uint32_t location = wrapI(wrapS, iPixel, sourceW);
455 rs_sampler_value wrapS,
460 uint32_t location = wrapI(wrapS, iPixel, sourceW);
468 rs_sampler_value wrapS,
504 int nx = wrapI(wrapS, iPixelU + 1, sourceW);
506 int lx = wrapI(wrapS, iPixelU, sourceW);
516 rs_sampler_value wrapS,
528 location.x = wrapI(wrapS, iPixel.x, sourceW)
    [all...]
  /frameworks/rs/cpp/
Sampler.cpp 52 sp<Sampler> Sampler::create(sp<RS> rs, RsSamplerValue min, RsSamplerValue mag, RsSamplerValue wrapS, RsSamplerValue wrapT, float anisotropy) {
54 void* id = RS::dispatch->SamplerCreate(rs->getContext(), min, mag, wrapS, wrapT, RS_SAMPLER_WRAP, anisotropy);
58 #define CREATE_SAMPLER(N, MIN, MAG, WRAPS, WRAPT) sp<const Sampler> Sampler::N(sp<RS> rs) { \
60 rs->mSamplers.N = (create(rs, MIN, MAG, WRAPS, WRAPT, 0.f)); \

Completed in 740 milliseconds

1 2 3 4