/third_party/ffmpeg/libavcodec/ |
H A D | lcldec.c | 60 int imgtype; member 193 if (c->imgtype == IMGTYPE_RGB24 && len == FFALIGN(width * 3, 4) * height || in decode_frame() 194 c->imgtype == IMGTYPE_YUV111 && len == width * height * 3) { in decode_frame() 233 switch (c->imgtype) { in decode_frame() 266 if (c->compression == COMP_ZLIB_NORMAL && c->imgtype == IMGTYPE_RGB24 && in decode_frame() 301 switch (c->imgtype) { in decode_frame() 389 switch (c->imgtype) { in decode_frame() 513 switch (c->imgtype = avctx->extradata[4]) { in decode_init() 553 av_log(avctx, AV_LOG_ERROR, "Unsupported image format %d.\n", c->imgtype); in decode_init()
|
H A D | lclenc.c | 59 int imgtype; member 129 c->imgtype = IMGTYPE_RGB24; in encode_init() 136 avctx->extradata[4]= c->imgtype; in encode_init()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/ |
H A D | vktImageAtomicSpirvShaders.hpp | 52 CaseVariant (ImageType imgtype, tcu::TextureFormat::ChannelOrder order, tcu::TextureFormat::ChannelType chtype, CheckType cktype);
|
H A D | vktImageAtomicSpirvShaders.cpp | 6525 CaseVariant::CaseVariant (ImageType imgtype, tcu::TextureFormat::ChannelOrder order, tcu::TextureFormat::ChannelType chtype, CheckType cktype) in CaseVariant() argument 6526 : imageType{imgtype}, textureFormat{order, chtype}, checkType{cktype} in CaseVariant()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/image/ |
H A D | vktImageAtomicSpirvShaders.hpp | 52 CaseVariant (ImageType imgtype, tcu::TextureFormat::ChannelOrder order, tcu::TextureFormat::ChannelType chtype, CheckType cktype);
|
H A D | vktImageAtomicSpirvShaders.cpp | 6525 CaseVariant::CaseVariant (ImageType imgtype, tcu::TextureFormat::ChannelOrder order, tcu::TextureFormat::ChannelType chtype, CheckType cktype) in CaseVariant() argument 6526 : imageType{imgtype}, textureFormat{order, chtype}, checkType{cktype} in CaseVariant()
|
/third_party/skia/third_party/externals/spirv-cross/ |
H A D | spirv_glsl.cpp | 6129 string CompilerGLSL::legacy_tex_op(const std::string &op, const SPIRType &imgtype, uint32_t tex) 6132 switch (imgtype.image.dim) 6135 type = (imgtype.image.arrayed && !options.es) ? "1DArray" : "1D"; 6138 type = (imgtype.image.arrayed && !options.es) ? "2DArray" : "2D"; 6187 bool is_comparison = image_is_comparison(imgtype, tex); 6699 auto &imgtype = get<SPIRType>(type.self); 6702 switch (imgtype.image.dim) 6729 if (imgtype.image.arrayed) 6770 base_args.imgtype = &imgtype; [all...] |
H A D | spirv_msl.cpp | 7922 args.base.imgtype = &img_type; in emit_instruction() 8391 auto &imgtype = get<SPIRType>(type.self); 8394 if (imgtype.image.dim == DimSubpassData) 9276 auto &imgtype = *args.base.imgtype; 9291 add_spv_func_and_recompile(imgtype.image.depth ? SPVFuncImplGatherCompareSwizzle : SPVFuncImplGatherSwizzle); 9292 return imgtype.image.depth ? "spvGatherCompareSwizzle" : "spvGatherSwizzle"; 9441 auto &imgtype = *args.base.imgtype; 9510 switch (imgtype [all...] |
H A D | spirv_hlsl.cpp | 2814 auto &imgtype = expression_type(img); in emit_texture_op() local 2816 switch (imgtype.image.dim) in emit_texture_op() 2841 if (imgtype.image.arrayed) in emit_texture_op() 2903 auto &imgformat = get<SPIRType>(imgtype.image.type); in emit_texture_op() 2913 if (image_is_comparison(imgtype, img)) in emit_texture_op() 2969 switch (imgtype.image.dim) in emit_texture_op() 3059 if (imgtype.image.dim != spv::Dim1D && imgtype.image.dim != spv::Dim2D) in emit_texture_op() 3105 if (imgtype.image.dim != DimBuffer && !imgtype in emit_texture_op() [all...] |
H A D | spirv_glsl.hpp | 401 const SPIRType *imgtype = nullptr; member 789 std::string legacy_tex_op(const std::string &op, const SPIRType &imgtype, uint32_t id);
|
/third_party/python/Lib/tkinter/ |
H A D | tix.py | 395 def image_create(self, imgtype, cnf={}, master=None, **kw): 405 return master.tk.call(('image', 'create', imgtype,) + options)
|
H A D | __init__.py | 4059 def __init__(self, imgtype, name=None, cnf={}, master=None, **kw): 4074 self.tk.call(('image', 'create', imgtype, name,) + options)
|