HomeSort by relevance Sort by last modified time
    Searched refs:sampler (Results 201 - 225 of 477) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_exa_tgsi.c 123 struct ureg_src sampler,
168 TGSI_TEXTURE_1D, ureg_src(temp2), sampler);
183 struct ureg_src sampler,
253 ureg_src(temp2), sampler);
396 struct ureg_src sampler,
420 ureg_TEX(ureg, tmp1, TGSI_TEXTURE_2D, coords, sampler);
437 ureg_TEX(ureg, tmp, TGSI_TEXTURE_2D, coords, sampler);
445 ureg_TEX(ureg, dst, TGSI_TEXTURE_2D, coords, sampler);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_visitor.cpp 41 #include "program/sampler.h"
766 /* gen4's SIMD8 sampler always has the slots for u,v,r present. */
789 /* gen4's SIMD8 sampler always has the slots for u,v,r present. */
910 /* gen5's sampler has slots for u, v, r, array index, then optional
1286 int sampler = _mesa_get_sampler_uniform_value(ir->sampler, prog, &fp->Base); local
    [all...]
brw_fs.h 43 #include "program/sampler.h"
168 int sampler; member in class:fs_inst
215 void swizzle_result(ir_texture *ir, fs_reg orig_val, int sampler);
309 fs_reg emit_texcoord(ir_texture *ir, int sampler, int texunit);
gen6_vs_state.c 180 ((ALIGN(brw->sampler.count, 4)/4) << GEN6_VS_SAMPLER_COUNT_SHIFT));
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_llvm.c 440 struct lp_build_sampler_soa *sampler = 0; local
447 sampler = draw_sampler;
458 sampler,
1085 struct lp_build_sampler_soa *sampler = 0; local
1317 struct lp_sampler_static_state *sampler; local
    [all...]
  /external/skia/src/images/
SkImageDecoder_libjpeg.cpp 438 SkScaledBitmapSampler sampler(cinfo.output_width, cinfo.output_height, sampleSize);
443 bm->setInfo(SkImageInfo::Make(sampler.scaledWidth(), sampler.scaledHeight(),
493 if (!sampler.begin(bm, sc, *this)) {
494 return return_failure(cinfo, *bm, "sampler.begin");
500 // Possibly skip initial rows [sampler.srcY0]
501 if (!skip_src_rows(&cinfo, srcRow, sampler.srcY0())) {
528 sampler.next(srcRow);
534 if (!skip_src_rows(&cinfo, srcRow, sampler.srcDY() - 1)) {
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRender.hpp 82 const tcu::Sampler& sampler);
85 const tcu::Sampler& getSampler (void) const { return m_sampler; }
95 tcu::Sampler m_sampler;
119 tcu::Sampler sampler; member in struct:vkt::sr::ShaderEvalContext::ShaderSampler
513 VkSamplerSp sampler; member in class:vkt::sr::ShaderRenderCaseInstance::SamplerUniform
vktShaderRender.cpp 261 const tcu::Sampler& sampler)
263 , m_sampler (sampler)
319 textures[ndx].sampler = binding.getSampler();
360 return textures[unitNdx].tex2D->sample(textures[unitNdx].sampler, texCoords.x(), texCoords.y(), 0.0f);
947 const tcu::Sampler& refSampler = textureBinding.getSampler();
980 Move<VkSampler> sampler = createSampler(vk, vkDevice, &samplerParams); member in namespace:vkt::sr
1554 const SamplerUniform* sampler = static_cast<const SamplerUniform*>(uniformInfo); local
    [all...]
  /external/deqp/modules/gles2/functional/
es2fTextureSizeTests.cpp 46 using tcu::Sampler;
296 Sampler sampler = mapGLSampler(wrapS, wrapT, minFilter, magFilter); local
297 sampler.seamlessCubeMap = false;
298 sampleTexture(SurfaceAccess(referenceFrame, m_renderCtx.getRenderTarget().getPixelFormat()), m_texture->getRefTexture(), &texCoord[0], ReferenceParams(TEXTURETYPE_CUBE, sampler));
es2fShaderTextureFunctionTests.cpp 132 tcu::Sampler sampler; member in struct:deqp::gles2::Functional::__anon9317::TextureSpec
150 const tcu::Sampler& sampler_)
157 , sampler (sampler_)
187 inline Vec4 texture2D (const gls::ShaderEvalContext& c, float s, float t, float lod) { return c.textures[0].tex2D->sample(c.textures[0].sampler, s, t, lod); }
188 inline Vec4 textureCube (const gls::ShaderEvalContext& c, float s, float t, float r, float lod) { return c.textures[0].texCube->sample(c.textures[0].sampler, s, t, r, lod); }
357 m_textures.push_back(gls::TextureBinding(m_texture2D, m_textureSpec.sampler));
402 m_textures.push_back(gls::TextureBinding(m_textureCube, m_textureSpec.sampler));
572 static const tcu::Sampler samplerLinearNoMipmap (tcu::Sampler::REPEAT_GL, tcu::Sampler::REPEAT_GL, tcu::Sampler::REPEAT_GL
    [all...]
es2fTextureFormatTests.cpp 60 using tcu::Sampler;
154 renderParams.sampler = Sampler(Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::NEAREST, Sampler::NEAREST);
325 renderParams.sampler = Sampler(Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::CLAMP_TO_EDGE, Sampler::NEAREST, Sampler: (…)
    [all...]
  /external/deqp/modules/gles3/functional/
es3fTextureSizeTests.cpp 46 using tcu::Sampler;
296 Sampler sampler = mapGLSampler(wrapS, wrapT, minFilter, magFilter); local
297 sampler.seamlessCubeMap = true;
298 sampleTexture(SurfaceAccess(referenceFrame, m_renderCtx.getRenderTarget().getPixelFormat()), m_texture->getRefTexture(), &texCoord[0], ReferenceParams(TEXTURETYPE_CUBE, sampler));
es3fNegativeStateApiTests.cpp     [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_state_tss.c 82 const struct svga_sampler_state *s = svga->curr.sampler[i];
298 if (svga->curr.sampler[i]) {
299 const struct svga_sampler_state *curr = svga->curr.sampler[i];
  /external/mesa3d/src/mesa/state_tracker/
st_cb_drawpixels.c 278 p->SamplersUsed = 0x1; /* sampler 0 (bit 0) is used */
746 struct pipe_sampler_state sampler; local
747 memset(&sampler, 0, sizeof(sampler));
748 sampler.wrap_s = PIPE_TEX_WRAP_CLAMP;
749 sampler.wrap_t = PIPE_TEX_WRAP_CLAMP;
750 sampler.wrap_r = PIPE_TEX_WRAP_CLAMP;
751 sampler.min_img_filter = PIPE_TEX_FILTER_NEAREST;
752 sampler.min_mip_filter = PIPE_TEX_MIPFILTER_NONE;
753 sampler.mag_img_filter = PIPE_TEX_FILTER_NEAREST
    [all...]
  /frameworks/rs/
rsDriverLoader.cpp 117 ret &= fn(RS_HAL_SAMPLER_INIT, (void **)&rsc->mHal.funcs.sampler.init);
118 ret &= fn(RS_HAL_SAMPLER_DESTROY, (void **)&rsc->mHal.funcs.sampler.destroy);
119 ret &= fn(RS_HAL_SAMPLER_UPDATE_CACHED_OBJECT, (void **)&rsc->mHal.funcs.sampler.updateCachedObject);
  /external/mesa3d/src/gallium/state_trackers/clover/core/
kernel.hpp 31 #include "core/sampler.hpp"
206 clover::sampler *obj;
  /external/skia/src/gpu/effects/
GrTextureDomain.h 123 const GrGLSLTextureSampler& sampler,
  /frameworks/base/core/jni/
android_opengl_GLES32.cpp     [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
renderer.c 411 * Set renderer sampler and view states.
419 struct pipe_sampler_state sampler; local
424 memset(&sampler, 0, sizeof(sampler));
426 sampler.min_img_filter = tex_filter;
427 sampler.mag_img_filter = tex_filter;
428 sampler.min_mip_filter = PIPE_TEX_MIPFILTER_NONE;
430 sampler.wrap_s = tex_wrap;
431 sampler.wrap_t = tex_wrap;
432 sampler.wrap_r = PIPE_TEX_WRAP_CLAMP_TO_EDGE
    [all...]
  /external/autotest/client/site_tests/graphics_WebGLAquarium/
graphics_WebGLAquarium.py 9 import sampler namespace
60 # Enable ExynosSampler on Exynos platforms. The sampler looks for
65 self.kernel_sampler = sampler.ExynosSampler(period=5, duration=3)
188 """Sampler callback function for ExynosSampler.
  /external/opencv3/modules/video/src/opencl/
pyrlk.cl 227 __constant sampler_t sampler = CLK_NORMALIZED_COORDS_FALSE | CLK_ADDRESS_CLAMP_TO_EDGE | CLK_FILTER_LINEAR;
259 float J_val = read_imagef(J, sampler, (float2)(x, y)).x;
267 float diff = read_imagef(J, sampler, (float2)(x,y)).x-*Pch;
273 #define READI(_y,_x) IPatchLocal[(yid+((_y)*LSy))*LM_W+(xid+((_x)*LSx))] = read_imagef(I, sampler, (float2)(Point.x + xid+(_x)*LSx + 0.5f-1, Point.y + yid+(_y)*LSy+ 0.5f-1)).x;
  /frameworks/rs/api/
rs_object_info.spec 21 or Sampler object. These objects are created from Java. You can't create them from a
65 See <a href='http://developer.android.com/reference/android/renderscript/Sampler.html'>android.renderscript.S</a>.
314 summary: Anisotropy of the Sampler
316 Get the Sampler's anisotropy.
318 See <a href='http://developer.android.com/reference/android/renderscript/Sampler.html'>android.renderscript.S</a>.
326 summary: Sampler magnification value
328 Get the Sampler's magnification value.
330 See <a href='http://developer.android.com/reference/android/renderscript/Sampler.html'>android.renderscript.S</a>.
338 summary: Sampler minification value
340 Get the Sampler's minification value
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkTypeUtil.inl 244 inline VkDescriptorImageInfo makeDescriptorImageInfo (VkSampler sampler, VkImageView imageView, VkImageLayout imageLayout)
247 res.sampler = sampler;
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_tgsi_aos.c 369 if (!bld->sampler) {
370 _debug_printf("warning: found texture instruction but no sampler generator supplied\n");
394 return bld->sampler->emit_fetch_texel(bld->sampler,
990 struct lp_build_sampler_aos *sampler,
1014 bld.sampler = sampler;

Completed in 788 milliseconds

1 2 3 4 5 6 7 891011>>