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

1 2 3 4

  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
sampler.rs 21 rs_sampler wrapS;
40 _RS_ASSERT(rsSamplerGetMagnification(wrapS) == RS_SAMPLER_NEAREST);
41 _RS_ASSERT(rsSamplerGetMinification(wrapS) == RS_SAMPLER_NEAREST);
42 _RS_ASSERT(rsSamplerGetWrapS(wrapS) == RS_SAMPLER_WRAP);
43 _RS_ASSERT(rsSamplerGetWrapT(wrapS) == RS_SAMPLER_CLAMP);
44 _RS_ASSERT(rsSamplerGetAnisotropy(wrapS) == 1.0f);
UT_sampler.java 26 Sampler wrapS;
55 wrapS = b.create();
67 s.set_wrapS(wrapS);
103 _RS_ASSERT("wrapS.getMagnification() == Sampler.Value.NEAREST",
104 wrapS.getMagnification() == Sampler.Value.NEAREST);
105 _RS_ASSERT("wrapS.getMinification() == Sampler.Value.NEAREST",
106 wrapS.getMinification() == Sampler.Value.NEAREST);
107 _RS_ASSERT("wrapS.getWrapS() == Sampler.Value.WRAP",
108 wrapS.getWrapS() == Sampler.Value.WRAP);
109 _RS_ASSERT("wrapS.getWrapT() == Sampler.Value.CLAMP"
    [all...]
  /frameworks/rs/
rsSampler.cpp 32 RsSamplerValue wrapS,
38 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);
135 RsSamplerValue wrapS,
140 wrapS, wrapT, wrapR, aniso);
rsSampler.h 47 RsSamplerValue wrapS;
61 RsSamplerValue wrapS,
83 RsSamplerValue wrapS,
  /frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/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/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
UT_sampler.java 28 Sampler wrapS;
57 wrapS = b.create();
69 s.set_wrapS(wrapS);
105 _RS_ASSERT("wrapS.getMagnification() == Sampler.Value.NEAREST",
106 wrapS.getMagnification() == Sampler.Value.NEAREST);
107 _RS_ASSERT("wrapS.getMinification() == Sampler.Value.NEAREST",
108 wrapS.getMinification() == Sampler.Value.NEAREST);
109 _RS_ASSERT("wrapS.getWrapS() == Sampler.Value.WRAP",
110 wrapS.getWrapS() == Sampler.Value.WRAP);
111 _RS_ASSERT("wrapS.getWrapT() == Sampler.Value.CLAMP"
    [all...]
  /frameworks/rs/cpp/
Sampler.cpp 34 RsSamplerValue wrapS, RsSamplerValue wrapT, float anisotropy):
39 RsSamplerValue mWrapS = wrapS;
65 RsSamplerValue wrapS, RsSamplerValue wrapT, float anisotropy) {
67 void* id = RS::dispatch->SamplerCreate(rs->getContext(), min, mag, wrapS, wrapT,
69 return new Sampler(rs, id, min, mag, wrapS, wrapT, anisotropy);
72 #define CREATE_SAMPLER(N, MIN, MAG, WRAPS, WRAPT) sp<const Sampler> Sampler::N(const sp<RS> &rs) { \
74 rs->mSamplers.N = (create(rs, MIN, MAG, WRAPS, WRAPT, 0.f)); \
  /external/deqp/modules/gles3/functional/
es3fTextureWrapTests.cpp 86 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);
87 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);
88 TextureWrapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* description, CompressedTexFormat compressedFormat, deUint32 wrapS, deUint32 wrapT, deUint32 minFilter, deUint32 magFilter, int width, int height);
130 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)
137 , m_wrapS (wrapS)
149 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)
156 , m_wrapS (wrapS)
169 TextureWrapCase::TextureWrapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* description, CompressedTexFormat compressedFormat, deUint32 wrapS, deUint32 wrapT, deUint32 minFilter, deUint32 magFilter, int width, int height)
176 , m_wrapS (wrapS)
414 FOR_EACH(wrapS, wrapModes
    [all...]
es3fTextureFilteringTests.cpp 67 Texture2DFilteringCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* desc, deUint32 minFilter, deUint32 magFilter, deUint32 wrapS, deUint32 wrapT, deUint32 internalFormat, int width, int height);
68 Texture2DFilteringCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* desc, deUint32 minFilter, deUint32 magFilter, deUint32 wrapS, deUint32 wrapT, const std::vector<std::string>& filenames);
120 Texture2DFilteringCase::Texture2DFilteringCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* desc, deUint32 minFilter, deUint32 magFilter, deUint32 wrapS, deUint32 wrapT, deUint32 internalFormat, int width, int height)
126 , m_wrapS (wrapS)
136 Texture2DFilteringCase::Texture2DFilteringCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* desc, deUint32 minFilter, deUint32 magFilter, deUint32 wrapS, deUint32 wrapT, const std::vector<std::string>& filenames)
142 , m_wrapS (wrapS)
343 TextureCubeFilteringCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* desc, deUint32 minFilter, deUint32 magFilter, deUint32 wrapS, deUint32 wrapT, bool onlySampleFaceInterior, deUint32 internalFormat, int width, int height);
344 TextureCubeFilteringCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* desc, deUint32 minFilter, deUint32 magFilter, deUint32 wrapS, deUint32 wrapT, bool onlySampleFaceInterior, const std::vector<std::string>& filenames);
397 TextureCubeFilteringCase::TextureCubeFilteringCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* desc, deUint32 minFilter, deUint32 magFilter, deUint32 wrapS, deUint32 wrapT, bool onlySampleFaceInterior, deUint32 internalFormat, int width, int height)
403 , m_wrapS (wrapS)
    [all...]
  /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/swiftshader/src/OpenGL/libGLESv2/
Sampler.h 48 void setWrapS(GLenum wrapS) { mWrapModeS = wrapS; }
  /external/deqp/modules/gles2/functional/
es2fTextureWrapTests.cpp 60 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);
61 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);
90 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)
96 , m_wrapS (wrapS)
107 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)
113 , m_wrapS (wrapS)
286 FOR_EACH(wrapS, wrapModes,
292 bool is_clamp_clamp = (wrapModes[wrapS].mode == GL_CLAMP_TO_EDGE && wrapModes[wrapT].mode == GL_CLAMP_TO_EDGE);
293 bool is_repeat_mirror = (wrapModes[wrapS].mode == GL_REPEAT && wrapModes[wrapT].mode == GL_MIRRORED_REPEAT);
301 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,
444 uint32_t next = wrapI(wrapS, iPixel + 1, sourceW);
445 uint32_t location = wrapI(wrapS, iPixel, sourceW);
453 rs_sampler_value wrapS,
458 uint32_t location = wrapI(wrapS, iPixel, sourceW);
466 rs_sampler_value wrapS,
500 int nx = wrapI(wrapS, iPixelU + 1, sourceW);
502 int lx = wrapI(wrapS, iPixelU, sourceW);
512 rs_sampler_value wrapS,
524 location.x = wrapI(wrapS, iPixel.x, sourceW)
    [all...]
rs_sampler.c 31 return prog->mHal.state.wrapS;
  /external/deqp/framework/opengl/
gluTextureUtil.hpp 64 tcu::Sampler mapGLSampler (deUint32 wrapS, deUint32 minFilter, deUint32 magFilter);
65 tcu::Sampler mapGLSampler (deUint32 wrapS, deUint32 wrapT, deUint32 minFilter, deUint32 magFilter);
66 tcu::Sampler mapGLSampler (deUint32 wrapS, deUint32 wrapT, deUint32 wrapR, deUint32 minFilter, deUint32 magFilter);
  /frameworks/base/libs/hwui/
ProgramCache.h 55 void generateTextureWrap(String8& shader, GLenum wrapS, GLenum wrapT);
SkiaShader.h 54 GLenum wrapS;
  /external/deqp/modules/gles31/functional/
es31fTextureFilteringTests.cpp 108 deUint32 wrapS,
171 deUint32 wrapS,
180 , m_wrapS (wrapS)
516 const deUint32 wrapS = GL_REPEAT;
524 wrapS, wrapT,
545 const deUint32 wrapS = GL_REPEAT;
554 wrapS, wrapT,
577 const deUint32 wrapS = wrapModes[wrapSNdx].mode;
586 wrapS, wrapT,

Completed in 1216 milliseconds

1 2 3 4