HomeSort by relevance Sort by last modified time
    Searched defs:wrapT (Results 1 - 13 of 13) sorted by null

  /external/jmonkeyengine/engine/src/core/com/jme3/texture/
TextureArray.java 17 private WrapMode wrapT = WrapMode.EdgeClamp;
65 rVal.setWrap(WrapAxis.T, wrapT);
80 return wrapT;
98 this.wrapT = mode;
111 this.wrapT = mode;
Texture2D.java 47 private WrapMode wrapT = WrapMode.EdgeClamp;
109 rVal.setWrap(WrapAxis.T, wrapT);
135 this.wrapT = mode;
155 this.wrapT = mode;
173 return wrapT;
201 hash = 79 * hash + (this.wrapT != null ? this.wrapT.hashCode() : 0);
210 capsule.write(wrapT, "wrapT", WrapMode.EdgeClamp);
218 wrapT = capsule.readEnum("wrapT", WrapMode.class, WrapMode.EdgeClamp)
    [all...]
Texture3D.java 46 private WrapMode wrapT = WrapMode.EdgeClamp;
110 rVal.setWrap(WrapAxis.T, wrapT);
137 this.wrapT = mode;
158 this.wrapT = mode;
177 return wrapT;
212 capsule.write(wrapT, "wrapT", WrapMode.EdgeClamp);
221 wrapT = capsule.readEnum("wrapT", WrapMode.class, WrapMode.EdgeClamp);
TextureCubeMap.java 59 private WrapMode wrapT = WrapMode.EdgeClamp;
86 rVal.setWrap(WrapAxis.T, wrapT);
113 this.wrapT = mode;
134 this.wrapT = mode;
153 return wrapT;
184 hash = 53 * hash + (this.wrapT != null ? this.wrapT.hashCode() : 0);
194 capsule.write(wrapT, "wrapT", WrapMode.EdgeClamp);
203 wrapT = capsule.readEnum("wrapT", WrapMode.class, WrapMode.EdgeClamp)
    [all...]
  /frameworks/base/libs/hwui/
Texture.h 34 wrapT = GL_CLAMP_TO_EDGE;
48 void setWrapST(GLenum wrapS, GLenum wrapT, bool bindTexture = false, bool force = false,
51 if (firstWrap || force || wrapS != this->wrapS || wrapT != this->wrapT) {
55 this->wrapT = wrapT;
62 glTexParameteri(renderTarget, GL_TEXTURE_WRAP_T, wrapT);
122 GLenum wrapT;
  /frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/
UT_sampler.java 31 Sampler wrapT;
64 wrapT = b.create();
73 s.set_wrapT(wrapT);
120 _RS_ASSERT("wrapT.getMagnification() == Sampler.Value.NEAREST",
121 wrapT.getMagnification() == Sampler.Value.NEAREST);
122 _RS_ASSERT("wrapT.getMinification() == Sampler.Value.NEAREST",
123 wrapT.getMinification() == Sampler.Value.NEAREST);
124 _RS_ASSERT("wrapT.getWrapS() == Sampler.Value.CLAMP",
125 wrapT.getWrapS() == Sampler.Value.CLAMP);
126 _RS_ASSERT("wrapT.getWrapT() == Sampler.Value.WRAP"
    [all...]
  /frameworks/rs/
rsSampler.h 46 RsSamplerValue wrapT;
58 RsSamplerValue wrapT,
80 RsSamplerValue wrapT,
  /frameworks/compile/libbcc/lib/ScriptCRT/
rs_sample.c 308 rs_sampler_value wrapT = rsSamplerGetWrapT(s);
343 next.y = wrapI(wrapT, iPixel.y + 1, sourceH);
346 location.y = wrapI(wrapT, iPixel.y, sourceH);
357 rs_sampler_value wrapT = rsSamplerGetWrapT(s);
369 location.y = wrapI(wrapT, iPixel.y, sourceH);
rs_structs.h 140 rs_sampler_value wrapT;
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
GLServerTexture.java 29 public GLEnum wrapS = GLEnum.GL_REPEAT, wrapT = GLEnum.GL_REPEAT;
223 tex.wrapT = p;
  /external/mesa3d/include/pixelflinger2/
pixelflinger2_interface.h 77 2, wrapT :
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLState.java 266 IGLProperty wrapT = new GLEnumProperty(GLStateType.TEXTURE_WRAP_T, GLEnum.GL_REPEAT);
276 minFilter, magFilter, wrapS, wrapT, format, width, height, imageType, image);
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Context.cpp     [all...]

Completed in 390 milliseconds