/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/ |
sampler.rs | 7 rs_sampler anisotropy; 36 _RS_ASSERT(rsSamplerGetMagnification(anisotropy) == RS_SAMPLER_NEAREST); 37 _RS_ASSERT(rsSamplerGetMinification(anisotropy) == RS_SAMPLER_NEAREST); 38 _RS_ASSERT(rsSamplerGetWrapS(anisotropy) == RS_SAMPLER_CLAMP); 39 _RS_ASSERT(rsSamplerGetWrapT(anisotropy) == RS_SAMPLER_CLAMP); 40 _RS_ASSERT(rsSamplerGetAnisotropy(anisotropy) == 8.0f);
|
UT_sampler.java | 30 Sampler anisotropy; field in class:UT_sampler 66 anisotropy = b.create(); 72 s.set_anisotropy(anisotropy); 129 _RS_ASSERT("anisotropy.getMagnification() == Sampler.Value.NEAREST", 130 anisotropy.getMagnification() == Sampler.Value.NEAREST); 131 _RS_ASSERT("anisotropy.getMinification() == Sampler.Value.NEAREST", 132 anisotropy.getMinification() == Sampler.Value.NEAREST); 133 _RS_ASSERT("anisotropy.getWrapS() == Sampler.Value.CLAMP", 134 anisotropy.getWrapS() == Sampler.Value.CLAMP); 135 _RS_ASSERT("anisotropy.getWrapT() == Sampler.Value.CLAMP" [all...] |
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/ |
sampler.rs | 7 rs_sampler anisotropy; 36 _RS_ASSERT(rsSamplerGetMagnification(anisotropy) == RS_SAMPLER_NEAREST); 37 _RS_ASSERT(rsSamplerGetMinification(anisotropy) == RS_SAMPLER_NEAREST); 38 _RS_ASSERT(rsSamplerGetWrapS(anisotropy) == RS_SAMPLER_CLAMP); 39 _RS_ASSERT(rsSamplerGetWrapT(anisotropy) == RS_SAMPLER_CLAMP); 40 _RS_ASSERT(rsSamplerGetAnisotropy(anisotropy) == 8.0f);
|
UT_sampler.java | 32 Sampler anisotropy; field in class:UT_sampler 68 anisotropy = b.create(); 74 s.set_anisotropy(anisotropy); 131 _RS_ASSERT("anisotropy.getMagnification() == Sampler.Value.NEAREST", 132 anisotropy.getMagnification() == Sampler.Value.NEAREST); 133 _RS_ASSERT("anisotropy.getMinification() == Sampler.Value.NEAREST", 134 anisotropy.getMinification() == Sampler.Value.NEAREST); 135 _RS_ASSERT("anisotropy.getWrapS() == Sampler.Value.CLAMP", 136 anisotropy.getWrapS() == Sampler.Value.CLAMP); 137 _RS_ASSERT("anisotropy.getWrapT() == Sampler.Value.CLAMP" [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/asset/ |
TextureKey.java | 49 private int anisotropy; field in class:TextureKey 124 return anisotropy; 127 public void setAnisotropy(int anisotropy) { 128 this.anisotropy = anisotropy; 178 oc.write(anisotropy, "anisotropy", 0); 188 anisotropy = ic.readInt("anisotropy", 0);
|
/frameworks/rs/scriptc/ |
rs_sampler.rsh | 66 Get sampler anisotropy 69 * @return anisotropy
|
/prebuilts/sdk/renderscript/include/ |
rs_sampler.rsh | 66 Get sampler anisotropy 69 * @return anisotropy
|
/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);
|
rsCppStructs.h | [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/ |
r200_tex.c | 218 GLuint anisotropy = (t->pp_txfilter & R200_MAX_ANISO_MASK); local 227 "%s(tex %p) minf %s, maxf %s, anisotropy %d.\n", 231 anisotropy); 233 if ( anisotropy == R200_MAX_ANISO_1_TO_1 ) {
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
r200_tex.c | 218 GLuint anisotropy = (t->pp_txfilter & R200_MAX_ANISO_MASK); local 227 "%s(tex %p) minf %s, maxf %s, anisotropy %d.\n", 231 anisotropy); 233 if ( anisotropy == R200_MAX_ANISO_1_TO_1 ) {
|
/frameworks/base/docs/html/reference/renderscript/ |
rs__sampler_8rsh.html | 61 <p>Get sampler anisotropy</p> 68 <dl class="return"><dt><b>Returns:</b></dt><dd>anisotropy </dd></dl>
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/ |
radeon_tex.c | 171 GLuint anisotropy = (t->pp_txfilter & RADEON_MAX_ANISO_MASK); local 195 else if ( anisotropy == RADEON_MAX_ANISO_1_TO_1 ) {
|
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_tex.c | 171 GLuint anisotropy = (t->pp_txfilter & RADEON_MAX_ANISO_MASK); local 195 else if ( anisotropy == RADEON_MAX_ANISO_1_TO_1 ) {
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
gen7_sampler_state.c | 80 /* Set Anisotropy: */
|
brw_wm_sampler_state.c | 205 /* Set Anisotropy:
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
gen7_sampler_state.c | 80 /* Set Anisotropy: */
|
brw_wm_sampler_state.c | 205 /* Set Anisotropy:
|
/frameworks/base/graphics/java/android/renderscript/ |
Sampler.java | 96 * @return anisotropy setting for the sampler
|
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
Sampler.java | 98 * @return anisotropy setting for the sampler
|
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/ |
MaterialLoader.java | 174 // ignored.. only anisotropy is considered
|
/external/chromium_org/third_party/angle/src/libGLESv2/ |
Texture.cpp | 110 // Returns true on successful max anisotropy update (valid anisotropy value) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/docs/ |
d3d11ddi.txt | 225 + Gallium supports setting min/max/mip filters and anisotropy independently
|
/external/chromium_org/third_party/mesa/src/src/gallium/docs/source/ |
screen.rst | 146 * ``PIPE_CAPF_MAX_TEXTURE_ANISOTROPY``: The maximum level of anisotropy that can be
|
/external/mesa3d/src/gallium/docs/ |
d3d11ddi.txt | 225 + Gallium supports setting min/max/mip filters and anisotropy independently
|