HomeSort by relevance Sort by last modified time
    Searched full:sampler (Results 51 - 75 of 1009) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/mesa3d/src/gallium/drivers/i915/
i915_state_sampler.c 41 * There is a circular dependancy between the sampler state
50 * is set on the map state instead of the sampler state. That is
55 * we need to change the sampler state when map state is changed.
64 const struct i915_sampler_state *sampler,
84 const struct i915_sampler_state *sampler,
91 state[0] = sampler->state[0];
92 state[1] = sampler->state[1];
93 state[2] = sampler->state[2];
111 const unsigned ws = sampler->templ->wrap_s;
112 const unsigned wt = sampler->templ->wrap_t
    [all...]
  /external/caliper/lib/
java-allocation-instrumenter-2.0-sources.jar 
  /external/libxml2/test/schemas/
bug321475_0.xml 7 <sampler/>
  /external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/defs/
files.txt 7 sampler
shortfiles.txt 7 sampler
  /external/opencv3/samples/wp8/OcvImageManipulation/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/
SimplePixelShader.hlsl 21 // Sample the pixel color from the texture using the sampler at this texture coordinate location.
  /external/opencv3/samples/wp8/OcvRotatingCube/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/
SimplePixelShader.hlsl 21 // Sample the pixel color from the texture using the sampler at this texture coordinate location.
  /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));
is_object.rs 23 rs_sampler sampler;
28 *out = rsIsObject(in->sampler)==false ? 0 : 1;
  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
AggregateAllocationsRecorder.java 20 import com.google.monitoring.runtime.instrumentation.Sampler;
35 private final Sampler sampler = new Sampler() { field in class:AggregateAllocationsRecorder
46 com.google.monitoring.runtime.instrumentation.AllocationRecorder.addSampler(sampler);
  /external/skia/src/images/
SkImageDecoder_ktx.cpp 70 // Setup the sampler...
71 SkScaledBitmapSampler sampler(width, height, this->getSampleSize());
108 const int w = sampler.scaledWidth();
109 const int h = sampler.scaledHeight();
112 const int w = sampler.scaledWidth();
113 const int h = sampler.scaledHeight();
130 if (!sampler.begin(bm, SkScaledBitmapSampler::kGray, *this)) {
148 const int dstHeight = sampler.scaledHeight();
150 srcRow += sampler.srcY0() * srcRowBytes;
152 sampler.next(srcRow)
    [all...]
SkImageDecoder_libbmp.cpp 137 SkScaledBitmapSampler sampler(width, height, getSampleSize());
139 bm->setInfo(SkImageInfo::Make(sampler.scaledWidth(), sampler.scaledHeight(),
152 if (!sampler.begin(bm, SkScaledBitmapSampler::kRGB, *this)) {
157 const int dstHeight = sampler.scaledHeight();
160 srcRow += sampler.srcY0() * srcRowBytes;
162 sampler.next(srcRow);
163 srcRow += sampler.srcDY() * srcRowBytes;
  /external/mesa3d/src/gallium/state_trackers/vega/
asm_fill.h 35 struct ureg_src *sampler,
43 struct ureg_src *sampler,
76 struct ureg_src *sampler,
93 ureg_TEX(ureg, *out, TGSI_TEXTURE_1D, ureg_src(temp[2]), sampler[0]);
100 struct ureg_src *sampler,
129 ureg_TEX(ureg, *out, TGSI_TEXTURE_1D, ureg_src(temp[0]), sampler[0]);
137 struct ureg_src *sampler,
160 ureg_TEX(ureg, *out, TGSI_TEXTURE_2D, ureg_src(temp[1]), sampler[0]);
167 struct ureg_src *sampler,
173 ureg_TEX(ureg, *out, TGSI_TEXTURE_1D, ureg_src(temp[1]), sampler[0])
    [all...]
  /external/deqp/modules/gles31/functional/
es31fTextureBorderClampTests.cpp 93 bool isDepthFormat (deUint32 format, tcu::Sampler::DepthStencilMode mode)
111 DE_ASSERT(mode == tcu::Sampler::MODE_DEPTH);
114 else if (fmt.order == tcu::TextureFormat::DS && mode == tcu::Sampler::MODE_DEPTH)
121 bool isStencilFormat (deUint32 format, tcu::Sampler::DepthStencilMode mode)
139 DE_ASSERT(mode == tcu::Sampler::MODE_STENCIL);
142 else if (fmt.order == tcu::TextureFormat::DS && mode == tcu::Sampler::MODE_STENCIL)
149 tcu::TextureChannelClass getFormatChannelClass (deUint32 format, tcu::Sampler::DepthStencilMode mode)
288 if (isDepthFormat(texFormat, tcu::Sampler::MODE_DEPTH) || isStencilFormat(texFormat, tcu::Sampler::MODE_STENCIL))
294 if (isDepthFormat(texFormat, tcu::Sampler::MODE_DEPTH)
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_sampler_view.h 43 * A sampler's view into a texture
45 * We currently cache one sampler view on
47 * from the texture to the sampler view.
50 * texture from the sampler view. So the user
51 * of the sampler views must make sure that the
53 * the sampler view is refrenced.
  /external/deqp/framework/common/
tcuTexVerifierUtil.cpp 113 Sampler getUnnormalizedCoordSampler (const Sampler& sampler)
115 Sampler copy = sampler;
131 int wrap (Sampler::WrapMode mode, int c, int size)
137 case tcu::Sampler::CLAMP_TO_BORDER:
140 case tcu::Sampler::CLAMP_TO_EDGE:
143 case tcu::Sampler::REPEAT_GL:
144 case tcu::Sampler::REPEAT_CL
    [all...]
tcuTextureUtil.hpp 127 void scale (const PixelBufferAccess& dst, const ConstPixelBufferAccess& src, Sampler::FilterMode filter);
160 TextureFormat getEffectiveDepthStencilTextureFormat (const TextureFormat& baseFormat, Sampler::DepthStencilMode mode);
162 //! returns the currently effective access to an access with a given sampler mode, e.g.
163 //! for combined depth stencil accesses and for sampler set to sample stencil returns
165 PixelBufferAccess getEffectiveDepthStencilAccess (const PixelBufferAccess& baseAccess, Sampler::DepthStencilMode mode);
166 ConstPixelBufferAccess getEffectiveDepthStencilAccess (const ConstPixelBufferAccess& baseAccess, Sampler::DepthStencilMode mode);
168 //! returns the currently effective view to an texture with a given sampler mode. Uses
171 tcu::Texture1DView getEffectiveTextureView (const tcu::Texture1DView& src, std::vector<tcu::ConstPixelBufferAccess>& storage, const tcu::Sampler& sampler);
172 tcu::Texture2DView getEffectiveTextureView (const tcu::Texture2DView& src, std::vector<tcu::ConstPixelBufferAccess>& storage, const tcu::Sampler& sampler)
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkImageUtil.cpp     [all...]
  /external/deqp/framework/randomshaders/
rsgSamplers.hpp 43 Sampler2D (const tcu::Texture2D* texture, const tcu::Sampler& sampler)
45 , m_sampler (sampler)
56 tcu::Sampler m_sampler;
68 SamplerCube (const tcu::TextureCube* texture, const tcu::Sampler& sampler)
70 , m_sampler (sampler)
81 tcu::Sampler m_sampler;
  /external/llvm/test/CodeGen/NVPTX/
nvcl-param-align.ll 6 define void @foo(i64 %img, i64 %sampler, <5 x float>* %v) {
16 !3 = !{void (i64, i64, <5 x float>*)* @foo, !"sampler", i32 1}
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_matrix_filter.c 83 struct ureg_src sampler; local
97 sampler = ureg_DECL_sampler(shader, 0);
107 * t_array[0..*] = tex(t_array[0..*], sampler)
123 ureg_TEX(shader, t_array[i], TGSI_TEXTURE_2D, src, sampler);
158 struct pipe_sampler_state sampler; local
190 memset(&sampler, 0, sizeof(sampler));
191 sampler.wrap_s = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
192 sampler.wrap_t = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
193 sampler.wrap_r = PIPE_TEX_WRAP_CLAMP_TO_EDGE
    [all...]
vl_median_filter.c 83 struct ureg_src sampler; local
109 sampler = ureg_DECL_sampler(shader, 0);
117 * t_array[0..*] = tex(t_array[0..*], sampler)
132 ureg_TEX(shader, t_array[i], TGSI_TEXTURE_2D, src, sampler);
244 struct pipe_sampler_state sampler; local
276 memset(&sampler, 0, sizeof(sampler));
277 sampler.wrap_s = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
278 sampler.wrap_t = PIPE_TEX_WRAP_CLAMP_TO_EDGE;
279 sampler.wrap_r = PIPE_TEX_WRAP_CLAMP_TO_EDGE
    [all...]
  /development/perftests/panorama/feature_mos/src/mosaic_renderer/
YVURenderer.h 32 // Sampler location
  /external/clang/test/SemaOpenCL/
sampler_t.cl 8 local sampler_t smp; // expected-error {{sampler type cannot be used with the __local and __global address space qualifiers}}
  /external/mesa3d/src/glsl/
opt_function_inlining.cpp 39 ir_variable *sampler,
127 /* For samplers, we want the inlined sampler references
128 * referencing the passed in sampler variable, since that
130 * a sampler wouldn't. Fix it up below.
172 /* If any samplers were passed in, replace any deref of the sampler
173 * with a deref of the sampler argument.
271 * Replaces references to the "sampler" variable with a clone of "deref."
276 * also appear in the sampler field of an ir_tex instruction.
281 ir_sampler_replacement_visitor(ir_variable *sampler, ir_dereference *deref)
283 this->sampler = sampler
299 ir_variable *sampler; member in class:ir_sampler_replacement_visitor
    [all...]

Completed in 1879 milliseconds

1 23 4 5 6 7 8 91011>>