Home
last modified time | relevance | path

Searched refs:view (Results 176 - 200 of 755) sorted by relevance

12345678910>>...31

/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_sampler.h43 u_sampler_view_default_template(struct pipe_sampler_view *view,
48 u_sampler_view_default_dx9_template(struct pipe_sampler_view *view,
/third_party/mesa3d/src/gallium/drivers/freedreno/a5xx/
H A Dfd5_emit.c390 const struct fd5_pipe_sampler_view *view = variable
395 if (view->base.texture)
396 tile_mode = fd_resource(view->base.texture)->layout.tile_mode;
399 view->texconst0 | A5XX_TEX_CONST_0_TILE_MODE(tile_mode));
400 OUT_RING(ring, view->texconst1);
401 OUT_RING(ring, view->texconst2);
402 OUT_RING(ring, view->texconst3);
403 if (view->base.texture) {
404 struct fd_resource *rsc = fd_resource(view->base.texture);
405 if (view
[all...]
/third_party/skia/src/gpu/v1/
H A DDevice_drawTexture.cpp351 GrSurfaceProxyView view, in draw_texture()
354 view.concatSwizzle(GrSwizzle("aaaa")); in draw_texture()
358 GrSurfaceProxy* proxy = view.proxy(); in draw_texture()
380 std::move(view), in draw_texture()
396 std::move(view), in draw_texture()
434 auto [view, ct] = image.asView(rContext, GrMipmapped::kNo); in draw_image()
435 if (!view) { in draw_image()
451 std::move(view), in draw_image()
727 GrSurfaceProxyView view = special->view(thi in drawSpecial() local
340 draw_texture(skgpu::v1::SurfaceDrawContext* sdc, const GrClip* clip, const SkMatrix& ctm, const SkPaint& paint, GrSamplerState::Filter filter, const SkRect& srcRect, const SkRect& dstRect, const SkPoint dstClip[4], GrAA aa, GrQuadAAFlags aaFlags, SkCanvas::SrcRectConstraint constraint, GrSurfaceProxyView view, const GrColorInfo& srcColorInfo) draw_texture() argument
933 GrSurfaceProxyView view; drawEdgeAAImageSet() local
[all...]
/third_party/node/test/parallel/
H A Dtest-https-options-boolean-check.js14 const view = new Uint8Array(ab);
15 return buf.map((b, i) => view[i] = b);
20 const view = new DataView(ab);
21 return buf.map((b, i) => view[i] = b);
H A Dtest-tls-options-boolean-check.js14 const view = new Uint8Array(ab);
15 return buf.map((b, i) => view[i] = b);
20 const view = new DataView(ab);
21 return buf.map((b, i) => view[i] = b);
/third_party/skia/platform_tools/android/apps/androidkitdemo/src/main/java/org/skia/androidkitdemo1/
H A DMainActivity.java15 import android.view.SurfaceHolder;
16 import android.view.SurfaceView;
17 import android.view.View;
18 import android.view.ViewGroup;
93 * SkottieView added programmatically to view hierarchy in onCreate()
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
H A DMultiviewDrawTest.cpp170 GLColor GetViewColor(int x, int y, int view) in GetViewColor() argument
172 EXPECT_TRUE(static_cast<size_t>(view) < mReadFramebuffer.size()); in GetViewColor()
175 EXPECT_TRUE(static_cast<size_t>(view) < mResolveFramebuffer.size()); in GetViewColor()
176 glBindFramebuffer(GL_READ_FRAMEBUFFER, mResolveFramebuffer[view]); in GetViewColor()
180 glBindFramebuffer(GL_READ_FRAMEBUFFER, mReadFramebuffer[view]); in GetViewColor()
506 for (int view = 0; view < mNumViews; ++view) in checkGreenChannel()
513 static_cast<size_t>(view * mViewWidth * mViewHeight + mViewWidth * h + w); in checkGreenChannel()
516 GetViewColor(w, h, view)) in checkGreenChannel()
[all...]
/third_party/mesa3d/src/mesa/state_tracker/
H A Dst_atom_sampler.c106 /* XXX: clean that up to not use the sampler view at all */ in st_convert_sampler()
110 struct pipe_sampler_view *view = sv->view; in st_convert_sampler() local
114 view->swizzle_r, in st_convert_sampler()
115 view->swizzle_g, in st_convert_sampler()
116 view->swizzle_b, in st_convert_sampler()
117 view->swizzle_a, in st_convert_sampler()
/third_party/mesa3d/src/intel/isl/
H A Disl_emit_depth_stencil.c99 /* These are based entirely on the view */ in emit_depth_stencil_hiz_s()
100 db.RenderTargetViewExtent = info->view->array_len - 1; in emit_depth_stencil_hiz_s()
101 db.LOD = info->view->base_level; in emit_depth_stencil_hiz_s()
102 db.MinimumArrayElement = info->view->base_array_layer; in emit_depth_stencil_hiz_s()
195 sb.Depth = sb.RenderTargetViewExtent = info->view->array_len - 1; in emit_depth_stencil_hiz_s()
196 sb.SurfLOD = info->view->base_level; in emit_depth_stencil_hiz_s()
197 sb.MinimumArrayElement = info->view->base_array_layer; in emit_depth_stencil_hiz_s()
/third_party/mesa3d/src/gallium/drivers/freedreno/
H A Dfreedreno_util.h297 fd_sampler_first_level(const struct pipe_sampler_view *view) in fd_sampler_first_level() argument
299 if (view->target == PIPE_BUFFER) in fd_sampler_first_level()
301 return view->u.tex.first_level; in fd_sampler_first_level()
305 fd_sampler_last_level(const struct pipe_sampler_view *view) in fd_sampler_last_level() argument
307 if (view->target == PIPE_BUFFER) in fd_sampler_last_level()
309 return view->u.tex.last_level; in fd_sampler_last_level()
/third_party/mesa3d/src/gallium/targets/haiku-softpipe/
H A DSoftwareRenderer.cpp38 instantiate_gl_renderer(BGLView *view, ulong opts) in instantiate_gl_renderer() argument
40 return new SoftwareRenderer(view, opts); in instantiate_gl_renderer()
128 SoftwareRenderer::SoftwareRenderer(BGLView *view, ulong options) in SoftwareRenderer() argument
130 BGLRenderer(view, options), in SoftwareRenderer()
148 BRect b = view->Bounds(); in SoftwareRenderer()
149 fColorSpace = BScreen(view->Window()).ColorSpace(); in SoftwareRenderer()
/third_party/skia/src/effects/
H A DSkTableColorFilter.cpp139 ColorTableEffect(std::unique_ptr<GrFragmentProcessor> inputFP, GrSurfaceProxyView view);
149 GrSurfaceProxyView view) in ColorTableEffect()
152 this->registerChild(GrTextureEffect::Make(std::move(view), kUnknown_SkAlphaType), in ColorTableEffect()
187 auto view = std::get<0>(GrMakeCachedBitmapProxyView(context, bitmap, GrMipmapped::kNo)); in Make() local
188 if (!view) { in Make()
193 std::move(view))); in Make()
148 ColorTableEffect(std::unique_ptr<GrFragmentProcessor> inputFP, GrSurfaceProxyView view) ColorTableEffect() argument
/third_party/mesa3d/src/gallium/drivers/crocus/
H A Dcrocus_resolve.c104 isv->view.base_level, isv->view.levels, in resolve_sampler_views()
108 crocus_resource_prepare_texture(ice, isv->res, isv->view.format, in resolve_sampler_views()
109 isv->view.base_level, isv->view.levels, in resolve_sampler_views()
110 isv->view.base_array_layer, in resolve_sampler_views()
111 isv->view.array_len); in resolve_sampler_views()
262 crocus_resource_prepare_texture(ice, res, surf->view.format, in crocus_predraw_resolve_framebuffer()
263 surf->view.base_level, 1, in crocus_predraw_resolve_framebuffer()
264 surf->view in crocus_predraw_resolve_framebuffer()
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/gem/
H A Di915_gem_mman.c154 * for the mappable aperture!), a view is created instead and faulted
155 * into userspace. (This view is aligned and sized appropriately for
202 struct i915_gtt_view view; in compute_partial_view() local
207 view.type = I915_GTT_VIEW_PARTIAL; in compute_partial_view()
208 view.partial.offset = rounddown(page_offset, chunk); in compute_partial_view()
209 view.partial.size = in compute_partial_view()
211 (obj->base.size >> PAGE_SHIFT) - view.partial.offset); in compute_partial_view()
215 view.type = I915_GTT_VIEW_NORMAL; in compute_partial_view()
217 return view; in compute_partial_view()
344 /* Use a partial view i in vm_fault_gtt()
345 struct i915_gtt_view view = vm_fault_gtt() local
[all...]
/third_party/mesa3d/src/virtio/vulkan/
H A Dvn_image.c142 /* need a deep copy for view formats array */ in vn_image_deferred_info_init()
572 /* image view commands */
596 struct vn_image_view *view = in vn_CreateImageView() local
597 vk_zalloc(alloc, sizeof(*view), VN_DEFAULT_ALIGN, in vn_CreateImageView()
599 if (!view) in vn_CreateImageView()
602 vn_object_base_init(&view->base, VK_OBJECT_TYPE_IMAGE_VIEW, &dev->base); in vn_CreateImageView()
603 view->image = img; in vn_CreateImageView()
605 VkImageView view_handle = vn_image_view_to_handle(view); in vn_CreateImageView()
620 struct vn_image_view *view = vn_image_view_from_handle(imageView); in vn_DestroyImageView() local
624 if (!view) in vn_DestroyImageView()
[all...]
/third_party/mesa3d/src/panfrost/lib/
H A Dpan_blitter.c812 views.src_z = views.dst_z = fb->zs.view.zs; in pan_preload_get_views()
815 const struct pan_image_view *view = fb->zs.view.s ? : fb->zs.view.zs; in pan_preload_get_views() local
816 enum pipe_format fmt = util_format_get_depth_only(view->format); in pan_preload_get_views()
818 switch (view->format) { in pan_preload_get_views()
821 default: fmt = view->format; break; in pan_preload_get_views()
824 if (fmt != view->format) { in pan_preload_get_views()
825 *patched_s = *view; in pan_preload_get_views()
829 views.src_s = views.dst_s = view; in pan_preload_get_views()
990 const struct pan_image_view *view = fb->zs.view.s ? : fb->zs.view.zs; pan_preload_emit_textures() local
[all...]
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/
H A Dnv50_stateobj_tex.h27 nv50_tic_entry(struct pipe_sampler_view *view) in nv50_tic_entry() argument
29 return (struct nv50_tic_entry *)view; in nv50_tic_entry()
/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/
H A DGPUTextureView.cpp24 GPUTextureView::GPUTextureView(wgpu::TextureView view) : view_(std::move(view)) { in GPUTextureView() argument
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/
H A DTestDisconnectActivity.java26 import android.view.View;
151 // Write to status and command view
161 // Write to status and command view
209 public void onCancel(View view) { in onCancel() argument
215 public void onStopAudioTest(View view) { in onStopAudioTest() argument
221 public void onStartDisconnectTest(View view) { in onStartDisconnectTest() argument
228 public void onStopDisconnectTest(View view) { in onStopDisconnectTest() argument
241 public void onFailTest(View view) { in onFailTest() argument
245 public void onSkipTest(View view) { in onSkipTest() argument
250 public void onShareResult(View view) { in onShareResult() argument
[all...]
/third_party/mesa3d/src/hgl/
H A DGLRendererRoster.h17 typedef BGLRenderer* (*InstantiateRenderer) (BGLView* view, ulong options);
32 BGLRenderer* GetRenderer(BGLView *view, ulong options);
/third_party/skia/src/gpu/dawn/
H A DGrDawnAttachment.h22 wgpu::TextureView view() const { return fView; } in view() function in GrDawnAttachment
37 wgpu::TextureView view);
/third_party/skia/src/gpu/d3d/
H A DGrD3DAttachment.h30 D3D12_CPU_DESCRIPTOR_HANDLE view() const { return fView.fHandle; } in view() function in GrD3DAttachment
44 const GrD3DDescriptorHeap::CPUHandle& view);
/third_party/skia/platform_tools/android/apps/skqp/src/main/java/org/skia/skqp/
H A DMainActivity.java6 import android.view.View;
17 public void startTests(View view) { in startTests() argument
/third_party/node/test/fixtures/wpt/encoding/
H A Diso-2022-jp-decoder.any.js5 view = new Int8Array(buffer)
7 view[i] = input[i]
9 assert_equals(d.decode(view), output)
/third_party/libphonenumber/java/demoapp/app/src/main/java/com/google/phonenumbers/demoapp/result/
H A DFormattableFragment.java4 import android.view.LayoutInflater;
5 import android.view.View;
6 import android.view.ViewGroup;
23 /** The fragment root view. */

Completed in 19 milliseconds

12345678910>>...31