Searched defs:dst_format (Results 26 - 35 of 35) sorted by relevance

12

/external/mesa3d/src/mesa/state_tracker/
H A Dst_context.h205 enum pipe_format dst_format; member in struct:st_context::__anon17282
H A Dst_cb_texture.c1075 reinterpret_formats(enum pipe_format *src_format, enum pipe_format *dst_format) argument
1078 enum pipe_format dst = *dst_format;
1080 /* Note: dst_format has already been transformed from luminance/intensity
1127 *dst_format = dst;
1239 enum pipe_format dst_format,
1291 enum pipe_format orig_dst_format = dst_format;
1293 if (!reinterpret_formats(&src_format, &dst_format)) {
1297 if (dst_format != orig_dst_format &&
1298 !screen->is_format_supported(screen, dst_format, PIPE_TEXTURE_2D, 0,
1331 templ.format = dst_format;
1236 try_pbo_upload(struct gl_context *ctx, GLuint dims, struct gl_texture_image *texImage, GLenum format, GLenum type, enum pipe_format dst_format, GLint xoffset, GLint yoffset, GLint zoffset, GLint width, GLint height, GLint depth, const void *pixels, const struct gl_pixelstore_attrib *unpack) argument
1366 enum pipe_format src_format, dst_format; local
1831 enum pipe_format dst_format, src_format; local
2285 enum pipe_format dst_format; local
[all...]
/external/pdfium/core/fxge/dib/
H A Dcfx_dibsource.cpp372 void ConvertBuffer_1bppMask2Rgb(FXDIB_Format dst_format, argument
380 int comps = (dst_format & 0xff) / 8;
402 void ConvertBuffer_8bppMask2Rgb(FXDIB_Format dst_format, argument
410 int comps = (dst_format & 0xff) / 8;
425 void ConvertBuffer_1bppPlt2Rgb(FXDIB_Format dst_format, argument
433 int comps = (dst_format & 0xff) / 8;
476 void ConvertBuffer_8bppPlt2Rgb(FXDIB_Format dst_format, argument
484 int comps = (dst_format & 0xff) / 8;
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_blitter.c868 enum pipe_format dst_format,
884 if (util_format_is_pure_uint(dst_format)) {
888 assert(util_format_is_pure_sint(dst_format));
894 if (util_format_is_pure_sint(dst_format)) {
898 assert(util_format_is_pure_uint(dst_format));
903 assert(!util_format_is_pure_uint(dst_format) &&
904 !util_format_is_pure_sint(dst_format));
1430 enum pipe_format dst_format,
1441 util_format_description(dst_format);
1455 if (!screen->is_format_supported(screen, dst_format, ds
866 blitter_get_fs_texfetch_col(struct blitter_context_priv *ctx, enum pipe_format src_format, enum pipe_format dst_format, enum pipe_texture_target target, unsigned src_nr_samples, unsigned dst_nr_samples, unsigned filter) argument
1428 is_blit_generic_supported(struct blitter_context *blitter, const struct pipe_resource *dst, enum pipe_format dst_format, const struct pipe_resource *src, enum pipe_format src_format, unsigned mask) argument
[all...]
/external/mesa3d/src/intel/blorp/
H A Dblorp_blit.c2007 enum isl_format dst_format, struct isl_swizzle dst_swizzle,
2020 dst_layer, dst_format, true);
2001 blorp_blit(struct blorp_batch *batch, const struct blorp_surf *src_surf, unsigned src_level, unsigned src_layer, enum isl_format src_format, struct isl_swizzle src_swizzle, const struct blorp_surf *dst_surf, unsigned dst_level, unsigned dst_layer, enum isl_format dst_format, struct isl_swizzle dst_swizzle, float src_x0, float src_y0, float src_x1, float src_y1, float dst_x0, float dst_y0, float dst_x1, float dst_y1, GLenum filter, bool mirror_x, bool mirror_y) argument
/external/mesa3d/src/intel/vulkan/
H A Danv_blorp.c456 struct anv_format dst_format = local
509 dst_format.isl_format, dst_format.swizzle,
/external/tensorflow/tensorflow/core/grappler/optimizers/
H A Dlayout_optimizer.cc902 string dst_format = (nhwc_to_nchw) ? "NCHW" : "NHWC"; local
906 attr_format.set_s(dst_format);
907 added_node->mutable_attr()->insert({"dst_format", attr_format});
/external/deqp/external/openglcts/modules/gl/
H A Dgl4cCopyImageTests.cpp2565 const GLenum dst_format = s_internal_formats[dst_frmt_id]; local
2568 if (false == Utils::areFormatsCompatible(src_format, dst_format))
2573 prepareTestCases(dst_format, dst_target, src_format, src_target);
3261 const GLenum dst_format = Utils::getFormat(dst_internal_format); local
3325 dst_level, dst_internal_format, dst_format, dst_type },
/external/vulkan-validation-layers/layers/
H A Dbuffer_validation.cpp1226 VkExtent3D GetAdjustedDestImageExtent(VkFormat src_format, VkFormat dst_format, VkExtent3D extent) { argument
1228 if ((FormatIsCompressed(src_format) && (!FormatIsCompressed(dst_format)))) {
1233 } else if ((!FormatIsCompressed(src_format) && (FormatIsCompressed(dst_format)))) {
1234 VkExtent3D block_size = FormatCompressedTexelBlockExtent(dst_format);
2330 VkFormat dst_format = dst_image_state->createInfo.format; local
2367 props = GetFormatProperties(device_data, dst_format);
2375 string_VkFormat(dst_format), validation_error_map[VALIDATION_ERROR_184001be]);
2387 if (FormatIsUInt(src_format) != FormatIsUInt(dst_format)) {
2391 << "Source format is " << string_VkFormat(src_format) << " Destination format is " << string_VkFormat(dst_format);
2398 if (FormatIsSInt(src_format) != FormatIsSInt(dst_format)) {
[all...]
/external/deqp/external/openglcts/modules/glesext/texture_cube_map_array/
H A DesextcTextureCubeMapArraySampling.cpp4214 * @param dst_format Format of destination image
4223 glw::GLenum dst_format, glw::GLenum dst_type,
4226 , m_destination(dst_internal_format, dst_format, dst_type, false /* is_compressed*/)
4219 formatDefinition(glw::GLenum src_internal_format, glw::GLenum src_format, glw::GLenum src_type, bool src_is_compressed, glw::GLenum dst_internal_format, glw::GLenum dst_format, glw::GLenum dst_type, samplerType sampler_type, const glw::GLchar* name) argument

Completed in 442 milliseconds

12