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

1 2 3

  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/crocus/
crocus_formats.c 420 * Returns true if the given format is supported for the given usage
464 bool supported = true; local
467 supported &= isl_format_supports_multisampling(devinfo, format);
478 supported &= depth_fmts;
494 supported = false;
502 supported &= isl_format_supports_rendering(devinfo, rt_format);
505 supported &= isl_format_supports_alpha_blending(devinfo, rt_format);
512 supported &= sample_count == 0;
514 supported &= isl_format_supports_typed_writes(devinfo, format);
515 supported &= isl_has_matching_typed_storage_image_format(devinfo, format)
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/iris/
iris_formats.c 102 * Returns true if the given format is supported for the given usage
131 bool supported = true; local
134 supported &= isl_format_supports_multisampling(devinfo, format);
137 supported &= format == ISL_FORMAT_R32_FLOAT_X8X24_TYPELESS ||
161 supported = false;
169 supported &= isl_format_supports_rendering(devinfo, rt_format);
172 supported &= isl_format_supports_alpha_blending(devinfo, rt_format);
179 supported &= sample_count == 0;
181 supported &= isl_format_supports_typed_writes(devinfo, format);
182 supported &= isl_has_matching_typed_storage_image_format(devinfo, format)
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/main/
spirv_extensions.h 52 /** Flags the supported extensions. Array to make it easier to iterate. */
53 bool supported[SPV_EXTENSIONS_COUNT]; member in struct:spirv_supported_extensions
55 /** Number of supported extensions */
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/iris/
iris_formats.c 383 * Returns true if the given format is supported for the given usage
412 bool supported = true; local
415 supported &= isl_format_supports_multisampling(devinfo, format);
418 supported &= format == ISL_FORMAT_R32_FLOAT_X8X24_TYPELESS ||
442 supported = false;
450 supported &= isl_format_supports_rendering(devinfo, rt_format);
453 supported &= isl_format_supports_alpha_blending(devinfo, rt_format);
460 supported &= sample_count <= 1;
463 supported &= isl_format_supports_typed_reads(devinfo, format) &&
468 supported &= isl_format_supports_sampling(devinfo, format)
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
st_cb_eglimage.c 47 bool supported = screen->is_format_supported(screen, format, PIPE_TEXTURE_2D, local
50 *native_supported = supported;
57 if ((usage == PIPE_BIND_SAMPLER_VIEW) && !supported) {
60 supported = screen->is_format_supported(screen, PIPE_FORMAT_R8_UNORM,
65 supported = screen->is_format_supported(screen, PIPE_FORMAT_R8_UNORM,
75 supported = screen->is_format_supported(screen, PIPE_FORMAT_R16_UNORM,
85 supported = screen->is_format_supported(screen, PIPE_FORMAT_R16G16_UNORM,
93 supported = screen->is_format_supported(screen, PIPE_FORMAT_R10G10B10A2_UNORM,
99 supported = screen->is_format_supported(screen, PIPE_FORMAT_R16G16B16A16_UNORM,
104 supported = screen->is_format_supported(screen, PIPE_FORMAT_R8G8_R8B8_UNORM
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/panfrost/
pan_screen.c 449 bool supported = util_format_is_rgba8_variant(format_desc); local
450 supported |= format == PIPE_FORMAT_B5G6R5_UNORM;
452 if (!supported)
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
st_cb_eglimage.c 47 bool supported = screen->is_format_supported(screen, format, PIPE_TEXTURE_2D, local
56 if ((usage == PIPE_BIND_SAMPLER_VIEW) && !supported) {
58 supported = screen->is_format_supported(screen, PIPE_FORMAT_R8_UNORM,
62 supported = screen->is_format_supported(screen, PIPE_FORMAT_R8_UNORM,
71 return supported;
100 _mesa_error(ctx, GL_INVALID_OPERATION, "%s(format not supported)", error);
  /xsrc/external/mit/libdrm/dist/tegra/
tegra.c 71 bool supported = false; local
79 supported = true;
83 if (!supported)
  /xsrc/external/mit/MesaLib/dist/src/broadcom/vulkan/
v3dv_formats.c 62 * involved). In these cases, it is safe to choose any format supported by
64 * TFU paths with formats that are not TFU supported otherwise.
96 if (!v3dv_format || !v3dv_format->supported)
119 /* Raster format is only supported for 1D textures, so let's just
171 if (!v3dv_format || !v3dv_format->supported)
174 if (!v3dv_format->supported)
222 const VkFormatFeatureFlags supported = local
224 return (supported & features) == features;
315 /* Sampling of raster depth/stencil images is not supported. Since 1D
337 /* Sampling of raster depth/stencil images is not supported. Since 1
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/etnaviv/
etnaviv_screen.c 137 /* Supported features (boolean caps). */
160 return 4; /* XXX could easily be supported */
179 case PIPE_CAP_COMPUTE: /* XXX supported on gc2000 */
180 case PIPE_CAP_MIXED_COLORBUFFER_FORMATS: /* only one colorbuffer supported, so mixing makes no sense */
183 case PIPE_CAP_START_INSTANCE: /* instancing not supported AFAIK */
184 case PIPE_CAP_VERTEX_ELEMENT_INSTANCE_DIVISOR: /* instancing not supported AFAIK */
186 case PIPE_CAP_MAX_DUAL_SOURCE_RENDER_TARGETS: /* no dual-source supported */
328 case PIPE_CAP_MAX_TEXTURE_3D_LEVELS: /* 3D textures not supported - fake it */
514 bool supported = true; local
517 supported = VIV_FEATURE(screen, chipFeatures, ETC1_TEXTURE_COMPRESSION)
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/hw/dmx/glxProxy/
glxscreens.c 78 * supported by all back-end servers
172 * not be supported.
177 int supported = 1; local
180 supported = 0;
183 for (s=0; s<__glXNumActiveScreens && supported; s++) {
185 supported = 0;
190 if (supported) {
240 // servers - only those configs will be supported
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/etnaviv/
etnaviv_screen.c 139 /* Supported features (boolean caps). */
170 return 4; /* XXX could easily be supported */
264 /* Generate the bitmask of supported draw primitives. */
455 bool supported = true; local
458 supported = VIV_FEATURE(screen, chipFeatures, ETC1_TEXTURE_COMPRESSION);
461 supported = VIV_FEATURE(screen, chipFeatures, DXT_TEXTURE_COMPRESSION);
464 supported = VIV_FEATURE(screen, chipMinorFeatures1, HALTI0);
467 supported = VIV_FEATURE(screen, chipMinorFeatures1, HALTI0);
470 supported = screen->specs.tex_astc;
474 supported = VIV_FEATURE(screen, chipMinorFeatures2, HALTI1)
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/panfrost/
pan_screen.c 519 /* MSAA 2x gets rounded up to 4x. MSAA 8x/16x only supported on v5+.
552 /* Also check that compressed texture formats are supported on this
554 * differences. RGTC can be emulated so is always supported. */
557 bool supported = panfrost_supports_compressed_format(dev, local
560 if (!is_rgtc && !supported)
844 /* Check if we're loading against a supported GPU model. */
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/va/
picture.c 661 bool supported; local
691 supported = screen->get_video_param(screen, context->decoder->profile,
697 if (!supported) {
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/vdpau/
decode.c 53 bool supported; local
76 supported = screen->get_video_param
83 if (!supported) {
  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/xa/
xa_composite.c 112 boolean supported = FALSE; local
122 supported = TRUE;
134 return supported;
154 return supported;
  /xsrc/external/mit/MesaLib/dist/src/vulkan/wsi/
wsi_common.c 259 bool supported = false; local
264 return supported;
268 return supported;
277 supported = true;
284 return supported;
  /xsrc/external/mit/MesaLib.old/dist/src/freedreno/vulkan/
tu_descriptor_set.c 236 pSupport->supported = false;
252 bool supported = true; local
290 supported = false;
299 supported = false;
313 pSupport->supported = supported;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/va/
picture.c 550 bool supported; local
580 supported = screen->get_video_param(screen, context->decoder->profile,
586 if (!supported) {
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/vdpau/
decode.c 53 bool supported; local
76 supported = screen->get_video_param
83 if (!supported) {
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/xa/
xa_composite.c 112 boolean supported = FALSE; local
122 supported = TRUE;
134 return supported;
154 return supported;
  /xsrc/external/mit/libX11/dist/src/xkb/
XKB.c 64 int supported; local
70 supported = True;
72 supported = False;
75 supported = True;
80 return supported;
517 XkbSetDetectableAutoRepeat(Display *dpy, Bool detectable, Bool *supported)
545 if (supported != NULL)
546 *supported = ((rep.supported & XkbPCF_DetectableAutoRepeatMask) != 0);
551 XkbGetDetectableAutoRepeat(Display *dpy, Bool *supported)
    [all...]
  /xsrc/external/mit/xf86-video-ati/xorg-server-copy/
msp3430.c 137 Bool supported; local
176 supported=FALSE;
185 supported=TRUE;
199 supported=TRUE;
207 supported=TRUE;
235 MSP_getProductName(m->chip_id), supported?"":" (unsupported)", rom_version, m->chip_id);
237 if (!supported) {
478 /* Only MSP34x5 supported format - Korean NTSC-M*/
  /xsrc/external/mit/xf86-video-openchrome/dist/src/
via_3d.c 30 Bool supported; member in struct:__anon9137
252 * Check if the compositing operator is supported and
265 if (vOp->supported) {
276 return viaOperatorModes[op].supported;
569 viaOperatorModes[i].supported = FALSE;
574 op->supported = TRUE;
  /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/i2c/
msp3430.c 137 Bool supported; local
176 supported=FALSE;
185 supported=TRUE;
199 supported=TRUE;
207 supported=TRUE;
235 MSP_getProductName(m->chip_id), supported?"":" (unsupported)", rom_version, m->chip_id);
237 if (!supported) {
478 /* Only MSP34x5 supported format - Korean NTSC-M*/

Completed in 20 milliseconds

1 2 3