HomeSort by: relevance | last modified time | path
    Searched defs:planes (Results 1 - 25 of 45) sorted by relevancy

1 2

  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/dri/
dri_helpers.h 41 } planes[3]; member in struct:dri2_format_mapping
  /xsrc/external/mit/libX11/dist/src/
GetImage.c 71 int planes; local
109 planes = image->depth;
114 planes = 1;
120 if (planes < 1 || image->height < 1 || image->bytes_per_line < 1 ||
122 INT_MAX / planes <= image->height * image->bytes_per_line ||
123 nbytes < planes * image->height * image->bytes_per_line) {
  /xsrc/external/mit/libdrm/dist/tests/etnaviv/
write_bmp.c 50 unsigned short planes; member in struct:dib_header
79 .planes = 1,
  /xsrc/external/mit/libdrm/dist/tests/modetest/
buffers.c 124 void *planes[3] = { 0, }; local
292 planes[0] = virtual;
311 planes[0] = virtual;
312 planes[1] = virtual + offsets[1];
331 planes[0] = virtual;
332 planes[1] = virtual + offsets[1];
333 planes[2] = virtual + offsets[2];
386 planes[0] = virtual;
390 util_fill_pattern(format, pattern, planes, width, height, pitches[0], seed);
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i915/
intel_regions.h 124 } planes[3]; member in struct:intel_image_format
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/
brw_image.h 64 } planes[3]; member in struct:brw_image_format
  /xsrc/external/mit/MesaLib/dist/src/panfrost/lib/
pan_blitter.h 47 } planes[2]; member in struct:pan_blit_info::__anon2776
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i915/
intel_regions.h 124 } planes[3]; member in struct:intel_image_format
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/
intel_image.h 64 } planes[3]; member in struct:intel_image_format
  /xsrc/external/mit/MesaLib/dist/src/amd/vulkan/
radv_nir_lower_ycbcr_textures.c 170 int planes = vk_format_get_plane_count(format); local
171 switch (planes) {
radv_formats.c 1262 unsigned planes = vk_format_get_plane_count(format); local
1263 if (planes == 1) {
1265 planes = 3;
1267 planes = 2;
1276 .drmFormatModifierPlaneCount = planes;
1323 unsigned planes = vk_format_get_plane_count(format); local
1324 if (planes == 1) {
1326 planes = 3;
1328 planes = 2;
1337 .drmFormatModifierPlaneCount = planes;
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/winsys/sw/kms-dri/
kms_dri_sw_winsys.c 87 struct list_head planes; member in struct:kms_sw_displaytarget
141 LIST_FOR_EACH_ENTRY(plane, &kms_sw_dt->planes, link) {
155 list_add(&plane->link, &kms_sw_dt->planes);
178 list_inithead(&kms_sw_dt->planes);
242 LIST_FOR_EACH_ENTRY_SAFE(plane, tmp, &kms_sw_dt->planes, link) {
332 list_inithead(&kms_sw_dt->planes);
415 LIST_FOR_EACH_ENTRY(plane, &kms_sw_dt->planes, link) {
  /xsrc/external/mit/MesaLib.old/dist/src/amd/vulkan/
radv_nir_lower_ycbcr_textures.c 284 int planes = vk_format_get_plane_count(format); local
285 switch (planes) {
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/winsys/sw/kms-dri/
kms_dri_sw_winsys.c 87 struct list_head planes; member in struct:kms_sw_displaytarget
141 LIST_FOR_EACH_ENTRY(plane, &kms_sw_dt->planes, link) {
155 list_add(&plane->link, &kms_sw_dt->planes);
178 list_inithead(&kms_sw_dt->planes);
242 LIST_FOR_EACH_ENTRY_SAFE(plane, tmp, &kms_sw_dt->planes, link) {
332 list_inithead(&kms_sw_dt->planes);
415 LIST_FOR_EACH_ENTRY(plane, &kms_sw_dt->planes, link) {
  /xsrc/external/mit/MesaLib/dist/include/android_stub/android/
hardware_buffer.h 323 * Holds all image planes that contain the pixel data.
326 uint32_t planeCount; ///< Number of distinct planes
327 AHardwareBuffer_Plane planes[4]; ///< Array of image planes member in struct:AHardwareBuffer_Planes
436 * formats. The locked planes are returned in the \a outPlanes argument. Note,
440 * YUV formats are always represented by three separate planes of data, one for
441 * each color plane. The order of planes in the array is guaranteed such that
448 * In case the buffer cannot be locked, \a outPlanes will contain zero planes.
  /xsrc/external/mit/MesaLib/dist/include/android_stub/system/
graphics.h 69 * y, cb, and cr point to the first byte of their respective planes.
75 * cstride is the stride of the chroma planes.
182 /* number of planes; 0 for FLEX_FORMAT_INVALID */
187 android_flex_plane_t *planes; member in struct:android_flex_layout
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/a3xx/
fd3_emit.c 584 uint8_t planes = ctx->rasterizer->clip_plane_enable; local
590 MIN2(util_bitcount(planes), 6));
596 uint32_t planes = ctx->rasterizer->clip_plane_enable; local
600 planes = 0;
602 while (planes && count < 6) {
603 int i = ffs(planes) - 1;
605 planes &= ~(1U << i);
  /xsrc/external/mit/xorg-server/dist/hw/xwin/
winmultiwindowicons.c 379 int planes, bpp, i; local
392 planes = GetDeviceCaps(hDC, PLANES);
549 CreateBitmap(iconSize, iconSize, planes, 1, mask);
553 CreateBitmap(iconSize, iconSize, planes, bpp, image);
  /xsrc/external/mit/xorg-server.old/dist/hw/xwin/
winmultiwindowicons.c 410 int planes, bpp, effBPP, stride, maskStride, i; local
425 planes = GetDeviceCaps (hDC, PLANES);
507 ii.hbmMask = CreateBitmap (iconSize, iconSize, planes, 1, mask);
510 ii.hbmColor = CreateBitmap (iconSize, iconSize, planes, bpp, image);
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/
u_tests.c 910 uint64_t handle, dmabuf, offset, stride, planes; member in struct:__anon1108
952 0, &handle[i].planes)) {
964 handle[0].planes == 2 &&
965 handle[1].planes == 2 &&
966 handle[2].planes == 2 &&
967 /* Different planes */
970 /* Same planes. */
1003 /* KMS - different planes */
1006 /* DMABUF - different planes */
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/a3xx/
fd3_emit.c 604 uint8_t planes = ctx->rasterizer->clip_plane_enable; local
627 MIN2(util_bitcount(planes), 6));
633 uint32_t planes = ctx->rasterizer->clip_plane_enable; local
637 planes = 0;
639 while (planes && count < 6) {
640 int i = ffs(planes) - 1;
642 planes &= ~(1U << i);
  /xsrc/external/mit/MesaLib/dist/src/intel/vulkan/
anv_formats.c 52 .planes = { \
67 .planes = { \
79 .planes = { \
91 .planes = { \
107 .planes = { \
133 .planes = { \
441 if (format->planes[0].isl_format == ISL_FORMAT_UNSUPPORTED)
452 isl_format_get_layout(anv_format->planes[i].isl_format);
485 struct anv_format_plane plane_format = format->planes[plane];
684 if (isl_format_is_yuv(anv_format->planes[0].isl_format))
877 uint32_t planes = anv_format->n_planes; local
910 uint32_t planes = anv_format->n_planes; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/radeonsi/
si_blit.c 114 unsigned planes, unsigned level_mask,
122 if (planes & PIPE_MASK_Z)
124 if (planes & PIPE_MASK_S)
191 unsigned planes = 0; local
198 planes |= PIPE_MASK_Z;
200 planes |= PIPE_MASK_S;
203 (struct si_context *)ctx, texture, staging, planes,
213 unsigned planes, unsigned level_mask,
223 if (planes & PIPE_MASK_S)
225 if (planes & PIPE_MASK_Z
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/intel/vulkan/
anv_image.c 132 return &image->planes[plane].surface;
141 surf->offset = align_u32(image->planes[plane].size,
147 if (image->planes[plane].size == 0)
148 image->planes[plane].offset = image->size;
152 image->planes[plane].size = (surf->offset + surf->isl.size_B) - image->planes[plane].offset;
155 image->planes[plane].alignment = MAX2(image->planes[plane].alignment,
250 assert(image->planes[plane].aux_surface.isl.size_B > 0 &&
258 assert((image->planes[plane].offset + image->planes[plane].size) % 4 == 0)
1458 uint32_t planes = 0; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/
si_texture.c 551 /* With modifiers and > 1 planes any applications will know that they
662 /* Individual planes are chained pipe_resource instances. */
881 * \param offset offset for non-zero planes or imported buffers
1243 /* This allocates textures with multiple planes like NV12 in 1 buffer. */
1379 unsigned planes = util_format_get_num_planes(format); local
1381 if (IS_AMD_FMT_MOD(modifier) && planes == 1) {
1390 return planes;
1467 /* Ignore metadata for non-zero planes. */
1515 /* Account for multiple planes with lowered yuv import. */

Completed in 27 milliseconds

1 2