Home
last modified time | relevance | path

Searched refs:depth0 (Results 1 – 25 of 231) sorted by relevance

12345678910

/third_party/mesa3d/src/freedreno/fdl/
Dfd_layout_test.c53 MAX2(testcase->layout.depth0, 1), mip_levels, in fdl_test_layout()
60 MAX2(testcase->layout.depth0, 1), mip_levels, in fdl_test_layout()
79 layout.height0, layout.depth0, layout.nr_samples, l, in fdl_test_layout()
86 layout.height0, layout.depth0, layout.nr_samples, l, in fdl_test_layout()
98 layout.height0, layout.depth0, layout.nr_samples, l, in fdl_test_layout()
108 layout.height0, layout.depth0, layout.nr_samples, l, in fdl_test_layout()
116 layout.height0, layout.depth0, layout.nr_samples, l, in fdl_test_layout()
Dfd5_layout.c35 uint32_t depth0, uint32_t mip_levels, uint32_t array_size, in fdl5_layout() argument
41 layout->depth0 = depth0; in fdl5_layout()
64 uint32_t depth = u_minify(depth0, level); in fdl5_layout()
Dfd6_layout.c106 uint32_t depth0, uint32_t mip_levels, uint32_t array_size, in fdl6_layout() argument
115 layout->depth0 = depth0; in fdl6_layout()
128 if (depth0 > 1 || ubwc_blockwidth == 0) in fdl6_layout()
196 uint32_t depth = u_minify(depth0, level); in fdl6_layout()
Dfd6_layout_test.c697 .depth0 = 32,
720 .depth0 = 32,
745 .depth0 = 32,
770 .depth0 = 32,
801 .depth0 = 16,
826 .depth0 = 16,
854 .depth0 = 128,
882 .depth0 = 17,
908 .depth0 = 8,
Dfd5_layout_test.c69 .depth0 = 11,
90 .depth0 = 11,
Dfreedreno_layout.c37 layout->depth0 = 1; in fdl_layout_buffer()
70 u_minify(layout->height0, level), u_minify(layout->depth0, level), in fdl_dump_layout()
Dfreedreno_layout.h126 uint32_t width0, height0, depth0; member
238 uint32_t depth0, uint32_t mip_levels, uint32_t array_size,
243 uint32_t depth0, uint32_t mip_levels, uint32_t array_size,
/third_party/mesa3d/src/gallium/drivers/r300/
Dr300_texture_desc.c254 size = layer_size * u_minify(tex->tex.depth0, i); in r300_setup_miptree()
265 u_minify(tex->tex.depth0, i), stride, tex->tex.size_in_bytes, in r300_setup_miptree()
281 !util_is_power_of_two_or_zero(tex->b.depth0); in r300_setup_flags()
534 tex->b.width0, tex->b.height0, tex->b.depth0, in r300_tex_print_info()
548 tex->b.depth0 = base->depth0; in r300_texture_desc_init()
554 tex->tex.depth0 = base->depth0; in r300_texture_desc_init()
595 tex->tex.depth0 = util_next_power_of_two(tex->tex.depth0); in r300_texture_desc_init()
/third_party/vk-gl-cts/external/vulkancts/data/vulkan/amber/depth/
Dout_of_range.amber38 BUFFER depth0 FORMAT D32_SFLOAT
56 BIND BUFFER depth0 AS depth_stencil
66 EXPECT depth0 IDX 0 EQ 1.0
Dout_of_range_unrestricted.amber39 BUFFER depth0 FORMAT D32_SFLOAT
57 BIND BUFFER depth0 AS depth_stencil
67 EXPECT depth0 IDX 0 EQ 2.0
Dbias_outside_range_fs_clamp.amber43 BUFFER depth0 FORMAT D32_SFLOAT
61 BIND BUFFER depth0 AS depth_stencil
73 EXPECT depth0 IDX 0 EQ 1.0
Dbias_outside_range.amber43 BUFFER depth0 FORMAT D32_SFLOAT
61 BIND BUFFER depth0 AS depth_stencil
73 EXPECT depth0 IDX 0 EQ 0.625
Dfs_clamp.amber44 BUFFER depth0 FORMAT D32_SFLOAT
62 BIND BUFFER depth0 AS depth_stencil
74 EXPECT depth0 IDX 0 EQ 0.9
Dbias_fs_clamp.amber44 BUFFER depth0 FORMAT D32_SFLOAT
63 BIND BUFFER depth0 AS depth_stencil
75 EXPECT depth0 IDX 0 EQ 0.9
Dez_fs_clamp.amber46 BUFFER depth0 FORMAT D32_SFLOAT
64 BIND BUFFER depth0 AS depth_stencil
76 EXPECT depth0 IDX 0 EQ 0.9
Dbias_outside_range_fs_clamp_unrestricted.amber44 BUFFER depth0 FORMAT D32_SFLOAT
62 BIND BUFFER depth0 AS depth_stencil
74 EXPECT depth0 IDX 0 TOLERANCE 1.0e-6 EQ 1.9
/third_party/mesa3d/src/gallium/winsys/amdgpu/drm/
Damdgpu_surface.c40 if (tex->depth0 > 1 || tex->array_size > 1) in amdgpu_surface_sanity()
54 if (tex->depth0 > 1) in amdgpu_surface_sanity()
85 config.info.depth = tex->depth0; in amdgpu_surface_init()
/third_party/mesa3d/src/mesa/state_tracker/
Dst_texture.c62 GLuint depth0, in st_texture_create() argument
74 assert(depth0 > 0); in st_texture_create()
91 pt.depth0 = depth0; in st_texture_create()
231 ptDepth != u_minify(pt->depth0, image->Level) || in st_texture_match_image()
360 GLuint depth = u_minify(dst->depth0, dstLevel); in st_texture_image_copy()
366 u_minify(src->depth0, srcLevel) != depth) { in st_texture_image_copy()
/third_party/node/tools/inspector_protocol/jinja2/
Dasyncsupport.py193 depth0=0): argument
194 LoopContextBase.__init__(self, undefined, recurse, depth0)
233 async def make_async_loop_context(iterable, undefined, recurse=None, depth0=0): argument
256 depth0)
Druntime.py359 def __init__(self, undefined, recurse=None, depth0=0): argument
363 self.depth0 = depth0
384 depth = property(lambda x: x.depth0 + 1)
406 return self._recurse(iterable, self._recurse, self.depth0 + 1)
423 def __init__(self, iterable, undefined, recurse=None, depth0=0): argument
424 LoopContextBase.__init__(self, undefined, recurse, depth0)
/third_party/vk-gl-cts/external/vulkancts/data/vulkan/amber/rasterization/depth_bias/
Dd16_unorm.amber154 float depth0 = imageLoad(texture, ivec2(0, 0)).r;
155 if (distance(ref0_0, depth0) < 0.003 || distance(ref0_1, depth0) < 0.003)
Dd24_unorm.amber154 float depth0 = imageLoad(texture, ivec2(0, 0)).r;
155 if (distance(ref0_0, depth0) < 0.003 || distance(ref0_1, depth0) < 0.003)
/third_party/mesa3d/src/freedreno/decode/scripts/
Dtexturator-to-unit-test-5xx.lua110 local depth0 = pkt[5].DEPTH
118 width0, height0, depth0, pkt[0].FMT, pkt[0].TILE_MODE, tostring(pkt[3].FLAG))
157 printf(" .width0 = %d, .height0 = %d, .depth0 = %d,\n", width0, height0, depth0)
/third_party/mesa3d/src/gallium/drivers/svga/
Dsvga_sampler_view.c130 pt->depth0, in svga_get_tex_sampler_view()
145 pt->depth0, in svga_get_tex_sampler_view()
210 u_minify(tex->b.depth0, i)); in svga_validate_sampler_view()
/third_party/mesa3d/src/gallium/frontends/nine/
Dbasetexture9.c351 box.depth = u_minify(This->base.info.depth0, l); in NineBaseTexture9_UploadSelf()
432 templ.depth0 = u_minify(templ.depth0, This->managed.lod); in NineBaseTexture9_CreatePipeResource()
440 old->depth0 == templ.depth0) in NineBaseTexture9_CreatePipeResource()
460 box.depth = u_minify(templ.depth0, l); in NineBaseTexture9_CreatePipeResource()
617 This->base.info.width0, This->base.info.height0, This->base.info.depth0, in NineBaseTexture9_Dump()

12345678910