Home
last modified time | relevance | path

Searched refs:anisotropy (Results 1 – 8 of 8) sorted by relevance

/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
DUT_sampler.java30 Sampler anisotropy; field in UT_sampler
65 anisotropy = b.create(); in initializeGlobals()
71 s.set_anisotropy(anisotropy); in initializeGlobals()
128 anisotropy.getMagnification() == Sampler.Value.NEAREST); in testJavaSide()
130 anisotropy.getMinification() == Sampler.Value.NEAREST); in testJavaSide()
132 anisotropy.getWrapS() == Sampler.Value.CLAMP); in testJavaSide()
134 anisotropy.getWrapT() == Sampler.Value.CLAMP); in testJavaSide()
136 anisotropy.getAnisotropy() == 8.0f); in testJavaSide()
Dsampler.rscript25 rs_sampler anisotropy;
54 _RS_ASSERT(rsSamplerGetMagnification(anisotropy) == RS_SAMPLER_NEAREST);
55 _RS_ASSERT(rsSamplerGetMinification(anisotropy) == RS_SAMPLER_NEAREST);
56 _RS_ASSERT(rsSamplerGetWrapS(anisotropy) == RS_SAMPLER_CLAMP);
57 _RS_ASSERT(rsSamplerGetWrapT(anisotropy) == RS_SAMPLER_CLAMP);
58 _RS_ASSERT(rsSamplerGetAnisotropy(anisotropy) == 8.0f);
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
DUT_sampler.java28 Sampler anisotropy; field in UT_sampler
63 anisotropy = b.create(); in initializeGlobals()
69 s.set_anisotropy(anisotropy); in initializeGlobals()
126 anisotropy.getMagnification() == Sampler.Value.NEAREST); in testJavaSide()
128 anisotropy.getMinification() == Sampler.Value.NEAREST); in testJavaSide()
130 anisotropy.getWrapS() == Sampler.Value.CLAMP); in testJavaSide()
132 anisotropy.getWrapT() == Sampler.Value.CLAMP); in testJavaSide()
134 anisotropy.getAnisotropy() == 8.0f); in testJavaSide()
Dsampler.rscript23 rs_sampler anisotropy;
52 _RS_ASSERT(rsSamplerGetMagnification(anisotropy) == RS_SAMPLER_NEAREST);
53 _RS_ASSERT(rsSamplerGetMinification(anisotropy) == RS_SAMPLER_NEAREST);
54 _RS_ASSERT(rsSamplerGetWrapS(anisotropy) == RS_SAMPLER_CLAMP);
55 _RS_ASSERT(rsSamplerGetWrapT(anisotropy) == RS_SAMPLER_CLAMP);
56 _RS_ASSERT(rsSamplerGetAnisotropy(anisotropy) == 8.0f);
/frameworks/rs/cpp/
DSampler.cpp34 RsSamplerValue wrapS, RsSamplerValue wrapT, float anisotropy): in Sampler() argument
41 float mAniso = anisotropy; in Sampler()
65 RsSamplerValue wrapS, RsSamplerValue wrapT, float anisotropy) { in create() argument
68 RS_SAMPLER_WRAP, anisotropy); in create()
69 return new Sampler(rs, id, min, mag, wrapS, wrapT, anisotropy); in create()
DrsCppStructs.h4230 RsSamplerValue wrapS, RsSamplerValue wrapT, float anisotropy);
4247 …amplerValue min, RsSamplerValue mag, RsSamplerValue wrapS, RsSamplerValue wrapT, float anisotropy);
/frameworks/base/services/core/java/com/android/server/display/feature/
Ddisplay_flags.aconfig211 …description: "Feature flag for enabling display anisotropy correction through LogicalDisplay upsca…
/frameworks/rs/script_api/include/
Drs_object_info.rsh386 * Get the Sampler's anisotropy.