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

1 2

  /external/jmonkeyengine/engine/src/core/com/jme3/texture/
TextureArray.java 16 private WrapMode wrapS = WrapMode.EdgeClamp;
64 rVal.setWrap(WrapAxis.S, wrapS);
78 return wrapS;
95 this.wrapS = mode;
110 this.wrapS = mode;
Texture2D.java 46 private WrapMode wrapS = WrapMode.EdgeClamp;
108 rVal.setWrap(WrapAxis.S, wrapS);
132 this.wrapS = mode;
154 this.wrapS = mode;
171 return wrapS;
200 hash = 79 * hash + (this.wrapS != null ? this.wrapS.hashCode() : 0);
209 capsule.write(wrapS, "wrapS", WrapMode.EdgeClamp);
217 wrapS = capsule.readEnum("wrapS", WrapMode.class, WrapMode.EdgeClamp)
    [all...]
TextureCubeMap.java 58 private WrapMode wrapS = WrapMode.EdgeClamp;
85 rVal.setWrap(WrapAxis.S, wrapS);
110 this.wrapS = mode;
133 this.wrapS = mode;
151 return wrapS;
183 hash = 53 * hash + (this.wrapS != null ? this.wrapS.hashCode() : 0);
193 capsule.write(wrapS, "wrapS", WrapMode.EdgeClamp);
202 wrapS = capsule.readEnum("wrapS", WrapMode.class, WrapMode.EdgeClamp)
    [all...]
Texture3D.java 45 private WrapMode wrapS = WrapMode.EdgeClamp;
109 rVal.setWrap(WrapAxis.S, wrapS);
134 this.wrapS = mode;
157 this.wrapS = mode;
175 return wrapS;
211 capsule.write(wrapS, "wrapS", WrapMode.EdgeClamp);
220 wrapS = capsule.readEnum("wrapS", WrapMode.class, WrapMode.EdgeClamp);
  /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);
133 RsSamplerValue wrapS,
138 wrapS, wrapT, wrapR, aniso);
rsSampler.h 45 RsSamplerValue wrapS;
59 RsSamplerValue wrapS,
81 RsSamplerValue wrapS,
rs.spec 250 param 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 30 Sampler wrapS;
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.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);
Texture.h 43 virtual void setWrapST(GLenum wrapS, GLenum wrapT, bool bindTexture = false,
AssetAtlas.cpp 94 virtual void setWrapST(GLenum wrapS, GLenum wrapT, bool bindTexture = false,
96 mDelegate->setWrapST(wrapS, wrapT, bindTexture, force, renderTarget);
ProgramCache.cpp 759 void ProgramCache::generateTextureWrap(String8& shader, GLenum wrapS, GLenum wrapT) {
761 if (wrapS == GL_MIRRORED_REPEAT) {
770 switch (wrapS) {
SkiaShader.h 113 inline void bindTexture(Texture* texture, GLenum wrapS, GLenum wrapT);
SkiaShader.cpp 93 void SkiaShader::bindTexture(Texture* texture, GLenum wrapS, GLenum wrapT) {
95 texture->setWrapST(wrapS, wrapT);
  /frameworks/rs/driver/runtime/
rs_sample.c 424 rs_sampler_value wrapS,
447 uint32_t next = wrapI(wrapS, iPixel + 1, sourceW);
448 uint32_t location = wrapI(wrapS, iPixel, sourceW);
456 rs_sampler_value wrapS,
461 uint32_t location = wrapI(wrapS, iPixel, sourceW);
469 rs_sampler_value wrapS,
505 int nx = wrapI(wrapS, iPixelU + 1, sourceW);
507 int lx = wrapI(wrapS, iPixelU, sourceW);
517 rs_sampler_value wrapS,
529 location.x = wrapI(wrapS, iPixel.x, sourceW)
    [all...]
rs_sampler.c 32 return prog->mHal.state.wrapS;
rs_structs.h 152 rs_sampler_value wrapS;
  /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.get(), 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)); \
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/
angletypes.h 105 GLenum wrapS;
Texture.cpp 33 mSamplerState.wrapS = GL_REPEAT;
88 mSamplerState.wrapS = wrap;
150 return mSamplerState.wrapS;
618 if ((mSamplerState.wrapS != GL_CLAMP_TO_EDGE && !isPow2(width)) ||
1063 if (mSamplerState.wrapS != GL_CLAMP_TO_EDGE || mSamplerState.wrapT != GL_CLAMP_TO_EDGE || mipmapping)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLState.java 271 IGLProperty wrapS = new GLEnumProperty(GLStateType.TEXTURE_WRAP_S, GLEnum.GL_REPEAT);
304 wrapS, wrapT, wrapR,
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
RenderScript.java 578 int wrapS, int wrapT, int wrapR, float aniso);
580 int wrapS, int wrapT, int wrapR, float aniso) {
582 return rsnSamplerCreate(mContext, magFilter, minFilter, wrapS, wrapT, wrapR, aniso);
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
RenderScript.java     [all...]

Completed in 1142 milliseconds

1 2