Home
last modified time | relevance | path

Searched refs:view (Results 276 - 300 of 767) sorted by relevance

1...<<11121314151617181920>>...31

/third_party/skia/src/gpu/effects/
H A DGrShadowGeoProc.cpp78 auto [view, ct, at] = d->randomAlphaOnlyView(); in TestCreate()
80 return GrRRectShadowGeoProc::Make(d->allocator(), view); in TestCreate()
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/
H A DFastButton.java27 import android.view.MotionEvent;
28 import android.view.View;
H A DRoundTripLatencyActivity.java24 import android.view.View;
352 public void onMeasure(View view) { in onMeasure() argument
384 public void onAverage(View view) { in onAverage() argument
388 public void onCancel(View view) { in onCancel() argument
/third_party/typescript/tests/baselines/reference/
H A DjsxEmitWithAttributes.js44 view() {
77 view() {
H A DjsxFactoryAndReactNamespace.js44 view() {
77 view() {
H A DjsxFactoryIdentifier.js44 view() {
80 view() {
H A DjsxFactoryNotIdentifierOrQualifiedName.js44 view() {
76 view() {
H A DjsxFactoryNotIdentifierOrQualifiedName2.js44 view() {
76 view() {
H A DjsxFactoryQualifiedName.js44 view() {
78 view() {
/third_party/skia/third_party/externals/abseil-cpp/absl/random/
H A Dbit_gen_ref_test.cc78 absl::BitGenRef view(urbg); in TEST()
80 v = view(); in TEST()
/third_party/skia/platform_tools/android/apps/androidkitdemo/src/main/java/org/skia/androidkitdemo1/
H A DTextActivity.java6 import android.view.SurfaceHolder;
7 import android.view.SurfaceView;
/third_party/skia/bench/
H A DGlyphQuadFillBench.cpp38 SkMatrix view = SkMatrix::I(); variable
50 SkMatrix drawMatrix = view;
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/dispnv50/
H A Dhead507d.c417 NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_IN, WIDTH, asyh->view.iW) | in head507d_view()
418 NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_IN, HEIGHT, asyh->view.iH)); in head507d_view()
421 NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_OUT, WIDTH, asyh->view.oW) | in head507d_view()
422 NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_OUT, HEIGHT, asyh->view.oH), in head507d_view()
425 NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_OUT_MIN, WIDTH, asyh->view.oW) | in head507d_view()
426 NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_OUT_MIN, HEIGHT, asyh->view.oH)); in head507d_view()
432 .view = head507d_view,
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/dispnv50/
H A Dhead507d.c417 NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_IN, WIDTH, asyh->view.iW) | in head507d_view()
418 NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_IN, HEIGHT, asyh->view.iH)); in head507d_view()
421 NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_OUT, WIDTH, asyh->view.oW) | in head507d_view()
422 NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_OUT, HEIGHT, asyh->view.oH), in head507d_view()
425 NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_OUT_MIN, WIDTH, asyh->view.oW) | in head507d_view()
426 NVVAL(NV507D, HEAD_SET_VIEWPORT_SIZE_OUT_MIN, HEIGHT, asyh->view.oH)); in head507d_view()
432 .view = head507d_view,
/third_party/mesa3d/src/freedreno/vulkan/
H A Dtu_lrz.c53 * - Parameters of the last used depth view.
122 * - Cache for direction byte + depth view params.
169 /* Disable direction by writing invalid depth view. */ in tu6_disable_lrz_via_depth_view()
188 const struct tu_image_view *view) in tu_lrz_init_state()
190 if (!view->image->lrz_height) { in tu_lrz_init_state()
204 /* We need to always have an LRZ view just to disable it if there is a in tu_lrz_init_state()
210 cmd->state.lrz.image_view = view; in tu_lrz_init_state()
220 cmd->state.lrz.fast_clear = view->image->lrz_fc_size > 0; in tu_lrz_init_state()
372 A6XX_GRAS_LRZ_DEPTH_VIEW(.dword = lrz->image_view->view.GRAS_LRZ_DEPTH_VIEW)); in tu_lrz_tiling_begin()
389 A6XX_GRAS_LRZ_DEPTH_VIEW(.dword = lrz->image_view->view in tu_lrz_tiling_begin()
186 tu_lrz_init_state(struct tu_cmd_buffer *cmd, const struct tu_render_pass_attachment *att, const struct tu_image_view *view) tu_lrz_init_state() argument
[all...]
/third_party/skia/src/gpu/d3d/
H A DGrD3DCommandList.cpp408 D3D12_INDEX_BUFFER_VIEW view = {}; in setIndexBuffer() local
409 view.BufferLocation = d3dBuffer->d3dResource()->GetGPUVirtualAddress(); in setIndexBuffer()
410 view.SizeInBytes = indexBuffer->size(); in setIndexBuffer()
411 view.Format = DXGI_FORMAT_R16_UINT; in setIndexBuffer()
412 fCommandList->IASetIndexBuffer(&view); in setIndexBuffer()
479 fCommandList->ClearDepthStencilView(stencil->view(), D3D12_CLEAR_FLAG_STENCIL, 0, in clearDepthStencilView()
497 dsDescriptor = d3dStencil->view(); in setRenderTarget()
/third_party/python/Modules/_io/
H A Dbytesio.c311 Get a read-write view over the contents of the BytesIO object.
320 PyObject *view; in _io_BytesIO_getbuffer_impl() local
329 view = PyMemoryView_FromObject((PyObject *) buf); in _io_BytesIO_getbuffer_impl()
331 return view; in _io_BytesIO_getbuffer_impl()
1077 bytesiobuf_getbuffer(bytesiobuf *obj, Py_buffer *view, int flags) in bytesiobuf_getbuffer() argument
1081 if (view == NULL) { in bytesiobuf_getbuffer()
1083 "bytesiobuf_getbuffer: view==NULL argument is obsolete"); in bytesiobuf_getbuffer()
1091 /* cannot fail if view != NULL and readonly == 0 */ in bytesiobuf_getbuffer()
1092 (void)PyBuffer_FillInfo(view, (PyObject*)obj, in bytesiobuf_getbuffer()
1100 bytesiobuf_releasebuffer(bytesiobuf *obj, Py_buffer *view) in bytesiobuf_releasebuffer() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/freedreno/a4xx/
H A Dfd4_texture.c259 struct fd4_pipe_sampler_view *view = fd4_pipe_sampler_view(views[i]); in fd4_set_sampler_views() local
260 if (view->astc_srgb) in fd4_set_sampler_views()
262 sampler_swizzles[start + i] = view->swizzle >> 4; in fd4_set_sampler_views()
265 util_format_description(view->base.format); in fd4_set_sampler_views()
/third_party/mesa3d/src/panfrost/vulkan/
H A Dpanvk_vX_meta_blit.c74 fbinfo->zs.view.zs = &views[0]; in panvk_meta_blit()
78 fbinfo->zs.view.s = &views[0]; in panvk_meta_blit()
82 fbinfo->rts[0].view = &views[0]; in panvk_meta_blit()
100 fbinfo->zs.view.s = &views[1]; in panvk_meta_blit()
/third_party/skia/src/gpu/text/
H A DGrAtlasManager.cpp224 static bool save_pixels(GrDirectContext* dContext, GrSurfaceProxyView view, GrColorType colorType, argument
226 if (!view.proxy()) {
230 auto ii = SkImageInfo::Make(view.proxy()->dimensions(), kRGBA_8888_SkColorType,
237 auto sContext = dContext->priv().makeSC(std::move(view),
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
H A DRenderTarget11.cpp69 unsigned int GetRTVSubresourceIndex(ID3D11Resource *resource, ID3D11RenderTargetView *view) in GetRTVSubresourceIndex() argument
72 view->GetDesc(&rtvDesc); in GetRTVSubresourceIndex()
130 unsigned int GetDSVSubresourceIndex(ID3D11Resource *resource, ID3D11DepthStencilView *view) in GetDSVSubresourceIndex() argument
133 view->GetDesc(&dsvDesc); in GetDSVSubresourceIndex()
/third_party/skia/tests/
H A DProcessorTest.cpp113 for (const GrSurfaceProxyView& view : views) { in TestFP()
114 this->registerChild(GrTextureEffect::Make(view, kUnknown_SkAlphaType)); in TestFP()
274 auto view = std::get<0>(GrMakeUncachedBitmapProxyView(fContext, bitmap)); in init() local
275 if (!view || !view.proxy()->instantiate(fResourceProvider)) { in init()
279 fTestViews[0] = GrProcessorTestData::ViewInfo{view, GrColorType::kRGBA_8888, in init()
299 auto view = std::get<0>(GrMakeUncachedBitmapProxyView(fContext, bitmap)); in init() local
300 if (!view || !view.proxy()->instantiate(fResourceProvider)) { in init()
304 fTestViews[1] = GrProcessorTestData::ViewInfo{view, GrColorTyp in init()
328 make(int type, int randomTreeDepth, GrSurfaceProxyView view, SkAlphaType alpha = kPremul_SkAlphaType) make() argument
[all...]
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/
H A DValidationTest.cpp239 wgpu::TextureView view = attachment.CreateView();
240 mColorAttachment.view = view;
/third_party/python/Modules/
H A Dxxlimited.c236 Xxo_getbuffer(XxoObject *self, Py_buffer *view, int flags) in Xxo_getbuffer() argument
238 int res = PyBuffer_FillInfo(view, (PyObject*)self, in Xxo_getbuffer()
248 Xxo_releasebuffer(XxoObject *self, Py_buffer *view) in Xxo_releasebuffer() argument
/third_party/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_tex_sample.c677 softpipe_get_lambda_from_grad_func(const struct pipe_sampler_view *view, in softpipe_get_lambda_from_grad_func() argument
680 switch (view->target) { in softpipe_get_lambda_from_grad_func()
3048 any_swizzle(const struct pipe_sampler_view *view) in any_swizzle() argument
3050 return (view->swizzle_r != PIPE_SWIZZLE_X || in any_swizzle()
3051 view->swizzle_g != PIPE_SWIZZLE_Y || in any_swizzle()
3052 view->swizzle_b != PIPE_SWIZZLE_Z || in any_swizzle()
3053 view->swizzle_a != PIPE_SWIZZLE_W); in any_swizzle()
3301 const struct pipe_sampler_view *view = &sp_sview->base; in sp_get_dims() local
3302 const struct pipe_resource *texture = view->texture; in sp_get_dims()
3304 if (view in sp_get_dims()
3556 softpipe_get_lambda_func(const struct pipe_sampler_view *view, enum pipe_shader_type shader) softpipe_get_lambda_func() argument
3592 struct pipe_sampler_view *view = &sview->base; softpipe_create_sampler_view() local
[all...]

Completed in 21 milliseconds

1...<<11121314151617181920>>...31