Home
last modified time | relevance | path

Searched refs:packing (Results 1 – 25 of 291) sorted by relevance

12345678910>>...12

/third_party/mesa3d/src/mesa/main/
Dimage.c117 const struct gl_pixelstore_attrib *packing, in _mesa_image_offset() argument
132 alignment = packing->Alignment; in _mesa_image_offset()
133 if (packing->RowLength > 0) { in _mesa_image_offset()
134 pixels_per_row = packing->RowLength; in _mesa_image_offset()
139 if (packing->ImageHeight > 0) { in _mesa_image_offset()
140 rows_per_image = packing->ImageHeight; in _mesa_image_offset()
146 skippixels = packing->SkipPixels; in _mesa_image_offset()
148 skiprows = packing->SkipRows; in _mesa_image_offset()
150 skipimages = (dimensions == 3) ? packing->SkipImages : 0; in _mesa_image_offset()
190 if (packing->Invert) { in _mesa_image_offset()
[all …]
Dreadpix.c199 const struct gl_pixelstore_attrib *packing) in readpixels_can_use_memcpy() argument
217 packing->SwapBytes, NULL)) { in readpixels_can_use_memcpy()
231 const struct gl_pixelstore_attrib *packing) in readpixels_memcpy() argument
239 if (!readpixels_can_use_memcpy(ctx, format, type, packing)) { in readpixels_memcpy()
243 dstStride = _mesa_image_row_stride(packing, width, format, type); in readpixels_memcpy()
244 dst = (GLubyte *) _mesa_image_address2d(packing, pixels, width, height, in readpixels_memcpy()
282 const struct gl_pixelstore_attrib *packing ) in read_uint_depth_pixels() argument
292 if (packing->SwapBytes) in read_uint_depth_pixels()
306 dstStride = _mesa_image_row_stride(packing, width, GL_DEPTH_COMPONENT, type); in read_uint_depth_pixels()
307 dst = (GLubyte *) _mesa_image_address2d(packing, pixels, width, height, in read_uint_depth_pixels()
[all …]
Dimage.h45 const struct gl_pixelstore_attrib *packing,
52 const struct gl_pixelstore_attrib *packing,
59 _mesa_image_address1d( const struct gl_pixelstore_attrib *packing,
66 _mesa_image_address2d( const struct gl_pixelstore_attrib *packing,
73 _mesa_image_address3d( const struct gl_pixelstore_attrib *packing,
81 _mesa_image_row_stride( const struct gl_pixelstore_attrib *packing,
86 _mesa_image_image_stride( const struct gl_pixelstore_attrib *packing,
133 const struct gl_pixelstore_attrib *packing,
Dtexstore.c979 const struct gl_pixelstore_attrib *packing, in store_texsubimage() argument
1010 format, type, pixels, packing, caller); in store_texsubimage()
1036 srcImageStride = _mesa_image_row_stride(packing, width, format, type); in store_texsubimage()
1044 srcImageStride = _mesa_image_image_stride(packing, width, height, in store_texsubimage()
1051 srcImageStride = _mesa_image_image_stride(packing, width, height, in store_texsubimage()
1057 srcImageStride = _mesa_image_image_stride(packing, width, height, in store_texsubimage()
1086 format, type, src, packing); in store_texsubimage()
1100 _mesa_unmap_teximage_pbo(ctx, packing); in store_texsubimage()
1115 const struct gl_pixelstore_attrib *packing) in _mesa_store_teximage() argument
1130 format, type, pixels, packing, "glTexImage"); in _mesa_store_teximage()
[all …]
Dpixelstore.c325 const struct gl_pixelstore_attrib *packing, in _mesa_compressed_pixel_storage_error_check() argument
328 if (!_mesa_is_desktop_gl(ctx) || !packing->CompressedBlockSize) in _mesa_compressed_pixel_storage_error_check()
331 if (packing->CompressedBlockWidth && in _mesa_compressed_pixel_storage_error_check()
332 packing->SkipPixels % packing->CompressedBlockWidth) { in _mesa_compressed_pixel_storage_error_check()
339 packing->CompressedBlockHeight && in _mesa_compressed_pixel_storage_error_check()
340 packing->SkipRows % packing->CompressedBlockHeight) { in _mesa_compressed_pixel_storage_error_check()
347 packing->CompressedBlockDepth && in _mesa_compressed_pixel_storage_error_check()
348 packing->SkipImages % packing->CompressedBlockDepth) { in _mesa_compressed_pixel_storage_error_check()
Dpbo.c440 const struct gl_pixelstore_attrib *packing, in _mesa_validate_pbo_compressed_teximage() argument
445 if (!_mesa_validate_pbo_source_compressed(ctx, dimensions, packing, in _mesa_validate_pbo_compressed_teximage()
451 if (!packing->BufferObj) { in _mesa_validate_pbo_compressed_teximage()
457 packing->BufferObj->Size, in _mesa_validate_pbo_compressed_teximage()
459 packing->BufferObj, in _mesa_validate_pbo_compressed_teximage()
Dtexstore.h118 const struct gl_pixelstore_attrib *packing);
127 const struct gl_pixelstore_attrib *packing);
166 const struct gl_pixelstore_attrib *packing,
Dpack.h43 const struct gl_pixelstore_attrib *packing);
48 GLubyte *dest, const struct gl_pixelstore_attrib *packing);
/third_party/mesa3d/src/compiler/glsl/
Dlink_uniforms.cpp53 enum glsl_interface_packing packing = in process() local
56 recursion(type, &name_copy, strlen(name), false, NULL, packing, false, in process()
77 enum glsl_interface_packing packing = var->get_interface_type() ? in process() local
92 recursion(var->type, &name, strlen(name), row_major, NULL, packing, in process()
101 recursion(t, &name, strlen(name), row_major, NULL, packing, in process()
106 this->visit_field(t, var->name, row_major, NULL, packing, false); in process()
114 const enum glsl_interface_packing packing, in recursion() argument
129 packing, false, record_array_count, NULL); in recursion()
135 this->enter_record(t, *name, row_major, packing); in recursion()
169 packing, in recursion()
[all …]
Dlinker.h84 enum glsl_interface_packing packing);
170 const enum glsl_interface_packing packing,
174 bool row_major, const enum glsl_interface_packing packing);
177 bool row_major, const enum glsl_interface_packing packing);
193 const enum glsl_interface_packing packing,
Dlink_uniform_blocks.cpp70 const enum glsl_interface_packing packing) in enter_record() argument
73 if (packing == GLSL_INTERFACE_PACKING_STD430) in enter_record()
83 const enum glsl_interface_packing packing) in leave_record() argument
94 if (packing == GLSL_INTERFACE_PACKING_STD430) in leave_record()
109 const enum glsl_interface_packing packing, in visit_field() argument
164 if (packing == GLSL_INTERFACE_PACKING_STD430) { in visit_field()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/
DModifyStruct.cpp321 TLayoutMatrixPacking packing, in addModifiedField() argument
326 layoutQualifier.matrixPacking = packing; in addModifiedField()
637 const TLayoutMatrixPacking packing);
642 const TLayoutMatrixPacking packing);
647 const TLayoutMatrixPacking packing) in IdentityModify() argument
650 state.addModifiedField(field, CloneType(type), storage, packing, nullptr); in IdentityModify()
660 const TLayoutMatrixPacking packing) in InlineStruct() argument
682 const TLayoutMatrixPacking subpacking = Overlay(packing, subtype); in InlineStruct()
692 const TLayoutMatrixPacking packing) in RecurseStruct() argument
720 state.addModifiedField(field, newType, storage, packing, state.symbolEnv.isPointer(field)); in RecurseStruct()
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/APPLE/
DAPPLE_row_bytes.txt40 within GL regarding the packing and unpacking of pixel data from
44 existed in GL using pixel storage modes for unpacking, packing, and
46 packing or unpacking of data is specified with pixel atomicity rather than
51 then they do not allow for the packing and unpacking of pixel data in a
71 Storage mode class - delineation of packing vs unpacking pixel storage
79 Specifying non-zero row bytes packing or unpacking values will
93 Does the semantics for packing need to match that of unpacking ?
103 for packing or unpacking is not known, as in the case of a
106 values. In the case cited above, the packing modes can be specified
/third_party/openGLES/extensions/APPLE/
DAPPLE_row_bytes.txt40 within GL regarding the packing and unpacking of pixel data from
44 existed in GL using pixel storage modes for unpacking, packing, and
46 packing or unpacking of data is specified with pixel atomicity rather than
51 then they do not allow for the packing and unpacking of pixel data in a
71 Storage mode class - delineation of packing vs unpacking pixel storage
79 Specifying non-zero row bytes packing or unpacking values will
93 Does the semantics for packing need to match that of unpacking ?
103 for packing or unpacking is not known, as in the case of a
106 values. In the case cited above, the packing modes can be specified
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/
DARB_shading_language_packing.txt57 This extension also adds the GLSL built-in packing functions included in
60 these packing functions in this separate extension it allows
64 In addition to the packing functions from ARB_gpu_shader5 this extension
95 (add support for general packing functions)
140 (add support for 16-bit floating-point packing and unpacking functions)
150 and then packing these two 16-bit integers into a 32-bit unsigned integer.
230 (4) The packing functions introduced in ARB_gpu_shader5 may be available
232 How can an implementation expose those packing functions?
234 RESOLVED: Added all the ARB_gpu_shader5 packing functions to revision
238 (5) Should we also provide a [un]packSnorm2x16 packing function, which
[all …]
/third_party/openGLES/extensions/ARB/
DARB_shading_language_packing.txt67 This extension also adds the GLSL built-in packing functions included in
70 these packing functions in this separate extension it allows
74 In addition to the packing functions from ARB_gpu_shader5 this extension
105 (add support for general packing functions)
150 (add support for 16-bit floating-point packing and unpacking functions)
160 and then packing these two 16-bit integers into a 32-bit unsigned integer.
240 (4) The packing functions introduced in ARB_gpu_shader5 may be available
242 How can an implementation expose those packing functions?
244 RESOLVED: Added all the ARB_gpu_shader5 packing functions to revision
248 (5) Should we also provide a [un]packSnorm2x16 packing function, which
[all …]
/third_party/mesa3d/src/compiler/
Dglsl_types.h494 enum glsl_interface_packing packing,
1262 enum glsl_interface_packing packing = this->get_interface_packing(); in get_internal_ifc_packing() local
1263 if (packing == GLSL_INTERFACE_PACKING_STD140 || in get_internal_ifc_packing()
1265 (packing == GLSL_INTERFACE_PACKING_SHARED || in get_internal_ifc_packing()
1266 packing == GLSL_INTERFACE_PACKING_PACKED))) { in get_internal_ifc_packing()
1269 assert(packing == GLSL_INTERFACE_PACKING_STD430 || in get_internal_ifc_packing()
1271 (packing == GLSL_INTERFACE_PACKING_SHARED || in get_internal_ifc_packing()
1272 packing == GLSL_INTERFACE_PACKING_PACKED))); in get_internal_ifc_packing()
1315 enum glsl_interface_packing packing,
/third_party/ffmpeg/libavcodec/
Ddpx.c166 int w, h, bits_per_color, descriptor, elements, packing; in decode_frame() local
235 packing = read16(&buf, endian); in decode_frame()
370 if (!packing) { in decode_frame()
378 if (packing) { in decode_frame()
640 int shift = elements > 1 ? packing == 1 ? 22 : 20 : packing == 1 ? 2 : 0; in decode_frame()
671 int shift = packing == 1 ? 4 : 0; in decode_frame()
673 if (packing) { in decode_frame()
/third_party/python/Doc/library/
Dxdrlib.rst19 The :mod:`xdrlib` module defines two classes, one for packing variables into XDR
26 :class:`Packer` is the class for packing data into XDR representation. The
65 value to pack. The following simple data type packing methods are supported:
79 The following methods support packing strings, bytes, and opaque data:
110 The following methods support packing arrays and lists:
277 print('packing the double failed:', instance.msg)
/third_party/vk-gl-cts/external/vulkan-docs/src/appendices/
DVK_KHR_uniform_buffer_standard_layout.adoc20 This extension enables tighter array and struct packing to be used with
24 packing of arrays and structures.
DVK_KHR_uniform_buffer_standard_layout.txt22 This extension enables tighter array and struct packing to be used with
26 packing of arrays and structures.
/third_party/mesa3d/src/panfrost/ci/
Dpanfrost-g52-fails.txt714 spec@glsl-1.10@execution@varying-packing@simple float array,Fail
715 spec@glsl-1.10@execution@varying-packing@simple float arrays_of_arrays,Fail
716 spec@glsl-1.10@execution@varying-packing@simple int array,Fail
717 spec@glsl-1.10@execution@varying-packing@simple int arrays_of_arrays,Fail
718 spec@glsl-1.10@execution@varying-packing@simple ivec2 array,Fail
719 spec@glsl-1.10@execution@varying-packing@simple ivec2 arrays_of_arrays,Fail
720 spec@glsl-1.10@execution@varying-packing@simple ivec3 array,Fail
721 spec@glsl-1.10@execution@varying-packing@simple ivec3 arrays_of_arrays,Fail
722 spec@glsl-1.10@execution@varying-packing@simple ivec3 separate,Fail
723 spec@glsl-1.10@execution@varying-packing@simple ivec4 array,Fail
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/MESA/
DMESA_pack_invert.txt35 conventional bottom-to-top order. Only pixel packing can be
53 Resolved: No, we're only concerned with pixel packing. There are other
56 enough to define a complementary extension for pixel packing in the
/third_party/openGLES/extensions/MESA/
DMESA_pack_invert.txt35 conventional bottom-to-top order. Only pixel packing can be
53 Resolved: No, we're only concerned with pixel packing. There are other
56 enough to define a complementary extension for pixel packing in the
/third_party/node/deps/npm/node_modules/libnpmpack/
DREADME.md8 programmatically packing tarballs from a local directory or from a registry or github spec. If pack…

12345678910>>...12