Searched defs:wrapS (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/
H A DUT_sampler.java30 Sampler wrapS; field in class:UT_sampler
60 wrapS = b.create();
72 s.set_wrapS(wrapS);
109 _RS_ASSERT("wrapS.getMagnification() == Sampler.Value.NEAREST",
110 wrapS.getMagnification() == Sampler.Value.NEAREST);
111 _RS_ASSERT("wrapS.getMinification() == Sampler.Value.NEAREST",
112 wrapS.getMinification() == Sampler.Value.NEAREST);
113 _RS_ASSERT("wrapS.getWrapS() == Sampler.Value.WRAP",
114 wrapS.getWrapS() == Sampler.Value.WRAP);
115 _RS_ASSERT("wrapS
[all...]
/frameworks/rs/
H A DrsSampler.cpp33 RsSamplerValue wrapS,
39 mHal.state.wrapS = wrapS;
81 RsSamplerValue wrapS,
91 if (existing->mHal.state.wrapS != wrapS) continue;
101 Sampler *s = new Sampler(rsc, magFilter, minFilter, wrapS, wrapT, wrapR, aniso);
119 RsSamplerValue wrapS,
124 wrapS, wrapT, wrapR, aniso);
30 Sampler(Context *rsc, RsSamplerValue magFilter, RsSamplerValue minFilter, RsSamplerValue wrapS, RsSamplerValue wrapT, RsSamplerValue wrapR, float aniso) argument
78 getSampler(Context *rsc, RsSamplerValue magFilter, RsSamplerValue minFilter, RsSamplerValue wrapS, RsSamplerValue wrapT, RsSamplerValue wrapR, float aniso) argument
116 rsi_SamplerCreate(Context * rsc, RsSamplerValue magFilter, RsSamplerValue minFilter, RsSamplerValue wrapS, RsSamplerValue wrapT, RsSamplerValue wrapR, float aniso) argument
H A DrsSampler.h45 RsSamplerValue wrapS; member in struct:android::renderscript::Sampler::Hal::State
57 RsSamplerValue wrapS,
79 RsSamplerValue wrapS,
/frameworks/support/renderscript/v8/rs_support/
H A DrsSampler.cpp33 RsSamplerValue wrapS,
39 mHal.state.wrapS = wrapS;
81 RsSamplerValue wrapS,
91 if (existing->mHal.state.wrapS != wrapS) continue;
101 Sampler *s = new Sampler(rsc, magFilter, minFilter, wrapS, wrapT, wrapR, aniso);
119 RsSamplerValue wrapS,
124 wrapS, wrapT, wrapR, aniso);
30 Sampler(Context *rsc, RsSamplerValue magFilter, RsSamplerValue minFilter, RsSamplerValue wrapS, RsSamplerValue wrapT, RsSamplerValue wrapR, float aniso) argument
78 getSampler(Context *rsc, RsSamplerValue magFilter, RsSamplerValue minFilter, RsSamplerValue wrapS, RsSamplerValue wrapT, RsSamplerValue wrapR, float aniso) argument
116 rsi_SamplerCreate(Context * rsc, RsSamplerValue magFilter, RsSamplerValue minFilter, RsSamplerValue wrapS, RsSamplerValue wrapT, RsSamplerValue wrapR, float aniso) argument
H A DrsSampler.h45 RsSamplerValue wrapS; member in struct:android::renderscript::Sampler::Hal::State
57 RsSamplerValue wrapS,
79 RsSamplerValue wrapS,
/frameworks/base/libs/hwui/
H A DTexture.h33 wrapS = GL_CLAMP_TO_EDGE;
52 void setWrapST(GLenum wrapS, GLenum wrapT, bool bindTexture = false, bool force = false, argument
55 if (firstWrap || force || wrapS != this->wrapS || wrapT != this->wrapT) {
58 this->wrapS = wrapS;
65 glTexParameteri(renderTarget, GL_TEXTURE_WRAP_S, wrapS);
132 GLenum wrapS; member in struct:android::uirenderer::Texture
H A DSkiaShader.cpp89 void SkiaShader::bindTexture(Texture* texture, GLenum wrapS, GLenum wrapT) { argument
91 texture->setWrapST(wrapS, wrapT);
H A DProgramCache.cpp792 void ProgramCache::generateTextureWrap(String8& shader, GLenum wrapS, GLenum wrapT) { argument
794 if (wrapS == GL_MIRRORED_REPEAT) {
803 switch (wrapS) {
/frameworks/compile/libbcc/lib/Renderscript/runtime/
H A Drs_sample.c264 rs_sampler_value wrapS = rsSamplerGetWrapS(s); local
283 uint32_t next = wrapI(wrapS, iPixel + 1, sourceW);
284 uint32_t location = wrapI(wrapS, iPixel, sourceW);
294 rs_sampler_value wrapS = rsSamplerGetWrapS(s); local
297 uint32_t location = wrapI(wrapS, iPixel, sourceW);
307 rs_sampler_value wrapS = rsSamplerGetWrapS(s); local
342 next.x = wrapI(wrapS, iPixel.x + 1, sourceW);
345 location.x = wrapI(wrapS, iPixel.x, sourceW);
356 rs_sampler_value wrapS = rsSamplerGetWrapS(s); local
368 location.x = wrapI(wrapS, iPixe
[all...]
H A Drs_structs.h140 rs_sampler_value wrapS; member in struct:Sampler::__anon1211::__anon1212
/frameworks/support/renderscript/v8/jni/
H A Dandroid_renderscript_RenderScript.cpp779 jint wrapS, jint wrapT, jint wrapR, jfloat aniso)
785 (RsSamplerValue)wrapS,
778 nSamplerCreate(JNIEnv *_env, jobject _this, RsContext con, jint magFilter, jint minFilter, jint wrapS, jint wrapT, jint wrapR, jfloat aniso) argument
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DRenderScript.java465 int wrapS, int wrapT, int wrapR, float aniso);
467 int wrapS, int wrapT, int wrapR, float aniso) {
469 return rsnSamplerCreate(mContext, magFilter, minFilter, wrapS, wrapT, wrapR, aniso);
464 rsnSamplerCreate(int con, int magFilter, int minFilter, int wrapS, int wrapT, int wrapR, float aniso) argument
466 nSamplerCreate(int magFilter, int minFilter, int wrapS, int wrapT, int wrapR, float aniso) argument
/frameworks/base/graphics/java/android/renderscript/
H A DRenderScript.java607 int wrapS, int wrapT, int wrapR, float aniso);
609 int wrapS, int wrapT, int wrapR, float aniso) {
611 return rsnSamplerCreate(mContext, magFilter, minFilter, wrapS, wrapT, wrapR, aniso);
606 rsnSamplerCreate(int con, int magFilter, int minFilter, int wrapS, int wrapT, int wrapR, float aniso) argument
608 nSamplerCreate(int magFilter, int minFilter, int wrapS, int wrapT, int wrapR, float aniso) argument
/frameworks/base/graphics/jni/
H A Dandroid_renderscript_RenderScript.cpp1291 jint wrapS, jint wrapT, jint wrapR, jfloat aniso)
1297 (RsSamplerValue)wrapS,
1290 nSamplerCreate(JNIEnv *_env, jobject _this, RsContext con, jint magFilter, jint minFilter, jint wrapS, jint wrapT, jint wrapR, jfloat aniso) argument

Completed in 2479 milliseconds