HomeSort by relevance Sort by last modified time
    Searched defs:Sampler (Results 1 - 25 of 41) sorted by null

1 2

  /frameworks/rs/
rsSampler.cpp 25 Sampler::Sampler(Context *rsc) : ObjectBase(rsc) {
30 Sampler::Sampler(Context *rsc,
44 mRSC->mHal.funcs.sampler.init(mRSC, this);
47 Sampler::~Sampler() {
48 mRSC->mHal.funcs.sampler.destroy(mRSC, this);
51 void Sampler::preDestroy() const {
60 void Sampler::bindToContext(SamplerState *ss, uint32_t slot)
    [all...]
rsSampler.h 37 class Sampler : public ObjectBase {
56 static ObjectBaseRef<Sampler> getSampler(Context *,
68 static Sampler *createFromStream(Context *rsc, IStream *stream);
74 virtual ~Sampler();
77 Sampler(Context *);
78 Sampler(Context *,
90 ObjectBaseRef<Sampler> mSamplers[RS_MAX_SAMPLER_SLOT];
99 Vector<Sampler *> mAllSamplers;
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
SampleTest.java 24 import android.renderscript.Sampler;
77 mScript.set_gNearest(Sampler.CLAMP_NEAREST(mRS));
78 mScript.set_gLinear(Sampler.CLAMP_LINEAR(mRS));
80 Sampler.Builder sb = new Sampler.Builder(mRS);
81 sb.setMinification(Sampler.Value.LINEAR_MIP_NEAREST);
84 mScript.set_gMipLinear(Sampler.CLAMP_LINEAR_MIP_LINEAR(mRS));
  /frameworks/rs/cpp/
Sampler.cpp 23 Sampler::Sampler(sp<RS> rs, void* id):
33 Sampler::Sampler(sp<RS> rs, void* id, RsSamplerValue min, RsSamplerValue mag,
44 RsSamplerValue Sampler::getMinification() {
48 RsSamplerValue Sampler::getMagnification() {
52 RsSamplerValue Sampler::getWrapS() {
56 RsSamplerValue Sampler::getWrapT() {
60 float Sampler::getAnisotropy() {
64 sp<Sampler> Sampler::create(sp<RS> rs, RsSamplerValue min, RsSamplerValue mag
    [all...]
rsCppStructs.h 50 class Sampler;
498 sp<const Element> SAMPLER;
521 sp<const Sampler> CLAMP_NEAREST;
522 sp<const Sampler> CLAMP_LINEAR;
523 sp<const Sampler> CLAMP_LINEAR_MIP_LINEAR;
524 sp<const Sampler> WRAP_NEAREST;
525 sp<const Sampler> WRAP_LINEAR;
526 sp<const Sampler> WRAP_LINEAR_MIP_LINEAR;
527 sp<const Sampler> MIRRORED_REPEAT_NEAREST;
528 sp<const Sampler> MIRRORED_REPEAT_LINEAR
    [all...]
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
Fisheye.java 21 import android.renderscript.Sampler;
103 mScript_approx_relaxed.set_sampler(Sampler.CLAMP_LINEAR(mRS));
107 mScript_approx_full.set_sampler(Sampler.CLAMP_LINEAR(mRS));
112 mScript_relaxed.set_sampler(Sampler.CLAMP_LINEAR(mRS));
116 mScript_full.set_sampler(Sampler.CLAMP_LINEAR(mRS));
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
Fisheye.java 105 mScript_approx_relaxed.set_sampler(Sampler.CLAMP_LINEAR(mRS));
109 mScript_approx_full.set_sampler(Sampler.CLAMP_LINEAR(mRS));
114 mScript_relaxed.set_sampler(Sampler.CLAMP_LINEAR(mRS));
118 mScript_full.set_sampler(Sampler.CLAMP_LINEAR(mRS));
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
Fisheye.java 21 import android.renderscript.Sampler;
108 mScript_approx_relaxed.set_sampler(Sampler.CLAMP_LINEAR(mRS));
112 mScript_approx_full.set_sampler(Sampler.CLAMP_LINEAR(mRS));
117 mScript_relaxed.set_sampler(Sampler.CLAMP_LINEAR(mRS));
121 mScript_full.set_sampler(Sampler.CLAMP_LINEAR(mRS));
  /external/autotest/client/site_tests/graphics_WebGLAquarium/
sampler.py 54 class Sampler(object):
55 """Base sampler class."""
67 """Check if sampler is stopped."""
89 raise RuntimeError('Sampler callback function is not set')
108 """Reset the sampler."""
112 class ExynosSampler(Sampler):
113 """Sampler for Exynos platform."""
  /external/llvm/lib/Target/AMDGPU/MCTargetDesc/
R600MCCodeEmitter.cpp 109 int64_t Sampler = MI.getOperand(14).getImm();
124 uint32_t Word2 = Sampler << 15 | SrcSelect[ELEMENT_X] << 20 |
  /external/v8/src/profiler/
sampler.h 21 // Sampler
23 // A sampler periodically samples the state of the VM and optionally
62 class Sampler {
64 // Initializes the Sampler support. Called once at VM startup.
68 // Initialize sampler.
69 Sampler(Isolate* isolate, int interval);
70 virtual ~Sampler();
78 // Start and stop sampler.
82 // Whether the sampling thread should use this Sampler for CPU profiling?
90 // Whether the sampler is running (that is, consumes resources)
    [all...]
sampler.cc 5 #include "src/profiler/sampler.h"
243 class Sampler::PlatformData : public PlatformDataCommon {
255 // Win32 profiler support. On Cygwin we use the same sampler implementation as
258 class Sampler::PlatformData : public PlatformDataCommon {
262 // going to use it in the sampler thread. Using GetThreadHandle() will
427 Sampler* sampler = isolate->logger()->sampler(); local
428 if (sampler == NULL) return;
562 sampler->SampleStack(state)
630 Sampler* sampler = active_samplers_.at(i); local
    [all...]
  /external/deqp/framework/opengl/
gluObjectWrapper.hpp 139 typedef TypedObjectWrapper<OBJECTTYPE_SAMPLER> Sampler;
  /frameworks/base/rs/java/android/renderscript/
Sampler.java 20 * Sampler object that defines how Allocations can be read as textures within a
24 * Any Allocation used with a Sampler must have been created with {@link
25 * android.renderscript.Allocation#USAGE_GRAPHICS_TEXTURE}; using a Sampler on
29 public class Sampler extends BaseObj {
52 Sampler(long id, RenderScript rs) {
58 * @return minification setting for the sampler
65 * @return magnification setting for the sampler
72 * @return S wrapping mode for the sampler
79 * @return T wrapping mode for the sampler
86 * @return anisotropy setting for the sampler
378 Sampler sampler = new Sampler(id, mRS); local
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Sampler.java 31 * Sampler object that defines how Allocations can be read as textures within a
35 * Any Allocation used with a Sampler must have been created with {@link
37 * Sampler on an {@link android.support.v8.renderscript.Allocation} that was not
42 public class Sampler extends BaseObj {
65 Sampler(long id, RenderScript rs) {
70 * @return minification setting for the sampler
77 * @return magnification setting for the sampler
84 * @return S wrapping mode for the sampler
91 * @return T wrapping mode for the sampler
98 * @return anisotropy setting for the sampler
334 Sampler sampler = new Sampler(id, mRS); local
    [all...]
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
SamplingProfiler.java 76 * A sampler is created every time profiling starts and cleared
80 private Sampler sampler; field in class:SamplingProfiler
280 if (sampler != null) {
283 sampler = new Sampler();
285 timer.scheduleAtFixedRate(sampler, 0, interval);
293 if (sampler == null) {
296 synchronized(sampler) {
297 sampler.stop = true
    [all...]
  /external/skia/src/core/
SkLinearBitmapPipeline.cpp 560 class Sampler final : public SkLinearBitmapPipeline::BilerpProcessorInterface {
563 Sampler(SkLinearBitmapPipeline::PixelPlacerInterface* next, Args&&... args)
608 sampleStage->Initialize<Sampler<Passthrough8888<kSRGB_SkColorProfileType>>>(
612 sampleStage->Initialize<Sampler<Passthrough8888<kLinear_SkColorProfileType>>>(
  /external/vulkan-validation-layers/tests/
vktestbinding.h 59 class Sampler;
591 class Sampler : public internal::NonDispHandle<VkSampler> {
593 ~Sampler();
    [all...]
  /frameworks/rs/driver/runtime/
rs_structs.h 153 * internal members of the C++ class Sampler owned by librs. Unfortunately,
166 typedef struct Sampler {
  /external/caliper/lib/
java-allocation-instrumenter-2.0.jar 
  /external/opencv3/3rdparty/include/opencl/1.2/CL/
cl.hpp     [all...]
  /external/deqp/framework/common/
tcuTexture.hpp 174 class Sampler
256 Sampler (WrapMode wrapS_,
283 Sampler (void)
348 Vec4 sample1D (const Sampler& sampler, Sampler::FilterMode filter, float s, int level) const;
349 Vec4 sample2D (const Sampler& sampler, Sampler::FilterMode filter, float s, float t, int depth) const;
350 Vec4 sample3D (const Sampler& sampler, Sampler::FilterMode filter, float s, float t, float r) const
    [all...]
  /external/mesa3d/include/CL/
cl.hpp     [all...]
  /external/mesa3d/src/mesa/drivers/common/
meta.c 277 * State for GLSL texture sampler which is used to generate fragment
295 GLuint Sampler;
311 GLuint VBO, FBO, RBO, Sampler;
1449 GLuint sampler, samplerSave = local
3089 struct glsl_sampler *sampler; local
    [all...]
  /prebuilts/sdk/renderscript/lib/
javalib.jar 

Completed in 835 milliseconds

1 2