HomeSort by: relevance | last modified time | path
    Searched refs:unpack (Results 1 - 25 of 113) sorted by relevancy

1 2 3 4 5

  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i915/
intel_pixel_draw.c 47 const struct gl_pixelstore_attrib *unpack,
52 unpack, pixels);
57 unpack, pixels);
intel_pixel_bitmap.c 67 const struct gl_pixelstore_attrib *unpack,
72 if (!_mesa_validate_pbo_access(2, unpack, width, height, 1,
79 buf = (GLubyte *) ctx->Driver.MapBufferRange(ctx, 0, unpack->BufferObj->Size,
81 unpack->BufferObj,
105 const struct gl_pixelstore_attrib *unpack,
113 GLuint src_offset = (x + unpack->SkipPixels) & 0x7;
114 GLuint mask = unpack->LsbFirst ? 0 : 7;
122 __func__, x,y,w,h,width,height,unpack->SkipPixels, src_offset, mask);
138 const GLubyte *rowsrc = _mesa_image_address2d(unpack, bitmap,
177 const struct gl_pixelstore_attrib *unpack,
    [all...]
intel_pixel.h 49 const struct gl_pixelstore_attrib *unpack,
60 const struct gl_pixelstore_attrib *unpack,
intel_tex_image.c 109 const struct gl_pixelstore_attrib *unpack,
114 struct intel_buffer_object *pbo = intel_buffer_object(unpack->BufferObj);
118 if (!unpack->BufferObj)
124 unpack->SkipPixels || unpack->SkipRows) {
149 _mesa_image_row_stride(unpack, image->Width, format, type);
183 const struct gl_pixelstore_attrib *unpack)
192 try_pbo_upload(ctx, texImage, unpack, format, type, pixels)) {
201 format, type, pixels, unpack);
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i915/
intel_pixel_draw.c 47 const struct gl_pixelstore_attrib *unpack,
52 unpack, pixels);
57 unpack, pixels);
intel_pixel_bitmap.c 67 const struct gl_pixelstore_attrib *unpack,
72 if (!_mesa_validate_pbo_access(2, unpack, width, height, 1,
79 buf = (GLubyte *) ctx->Driver.MapBufferRange(ctx, 0, unpack->BufferObj->Size,
81 unpack->BufferObj,
105 const struct gl_pixelstore_attrib *unpack,
113 GLuint src_offset = (x + unpack->SkipPixels) & 0x7;
114 GLuint mask = unpack->LsbFirst ? 0 : 7;
122 __func__, x,y,w,h,width,height,unpack->SkipPixels, src_offset, mask);
138 const GLubyte *rowsrc = _mesa_image_address2d(unpack, bitmap,
177 const struct gl_pixelstore_attrib *unpack,
    [all...]
intel_pixel.h 49 const struct gl_pixelstore_attrib *unpack,
60 const struct gl_pixelstore_attrib *unpack,
intel_tex_image.c 109 const struct gl_pixelstore_attrib *unpack,
114 struct intel_buffer_object *pbo = intel_buffer_object(unpack->BufferObj);
118 if (!_mesa_is_bufferobj(unpack->BufferObj))
124 unpack->SkipPixels || unpack->SkipRows) {
149 _mesa_image_row_stride(unpack, image->Width, format, type);
183 const struct gl_pixelstore_attrib *unpack)
192 try_pbo_upload(ctx, texImage, unpack, format, type, pixels)) {
201 format, type, pixels, unpack);
  /xsrc/external/mit/MesaLib/dist/src/mesa/main/
pbo.c 149 const struct gl_pixelstore_attrib *unpack,
154 if (unpack->BufferObj) {
155 /* unpack from PBO */
157 unpack->BufferObj->Size,
159 unpack->BufferObj,
167 /* unpack from normal memory */
181 const struct gl_pixelstore_attrib *unpack,
189 if (!_mesa_validate_pbo_access(dimensions, unpack, width, height, depth,
191 if (unpack->BufferObj) {
203 if (!unpack->BufferObj)
    [all...]
pbo.h 45 const struct gl_pixelstore_attrib *unpack,
51 const struct gl_pixelstore_attrib *unpack,
58 const struct gl_pixelstore_attrib *unpack);
68 const struct gl_pixelstore_attrib *unpack,
82 const struct gl_pixelstore_attrib *unpack,
94 const struct gl_pixelstore_attrib *unpack);
99 const struct gl_pixelstore_attrib *unpack,
107 const struct gl_pixelstore_attrib *unpack,
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
pbo.c 149 const struct gl_pixelstore_attrib *unpack,
154 if (_mesa_is_bufferobj(unpack->BufferObj)) {
155 /* unpack from PBO */
157 unpack->BufferObj->Size,
159 unpack->BufferObj,
167 /* unpack from normal memory */
181 const struct gl_pixelstore_attrib *unpack,
189 if (!_mesa_validate_pbo_access(dimensions, unpack, width, height, depth,
191 if (_mesa_is_bufferobj(unpack->BufferObj)) {
203 if (!_mesa_is_bufferobj(unpack->BufferObj))
    [all...]
pbo.h 45 const struct gl_pixelstore_attrib *unpack,
51 const struct gl_pixelstore_attrib *unpack,
58 const struct gl_pixelstore_attrib *unpack);
68 const struct gl_pixelstore_attrib *unpack,
82 const struct gl_pixelstore_attrib *unpack,
94 const struct gl_pixelstore_attrib *unpack);
99 const struct gl_pixelstore_attrib *unpack,
107 const struct gl_pixelstore_attrib *unpack,
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/
brw_pixel_draw.c 54 const struct gl_pixelstore_attrib *unpack,
58 struct brw_buffer_object *src = brw_buffer_object(unpack->BufferObj);
91 if (unpack->SwapBytes || unpack->LsbFirst ||
92 unpack->SkipPixels || unpack->SkipRows) {
97 int src_stride = _mesa_image_row_stride(unpack, width, format, type);
99 /* Mesa flips the src_stride for unpack->Invert, but we want our mt to have
102 if (unpack->Invert) {
108 src_offset += _mesa_image_offset(2, unpack, width, height
    [all...]
brw_pixel_bitmap.c 65 const struct gl_pixelstore_attrib *unpack,
70 if (!_mesa_validate_pbo_access(2, unpack, width, height, 1,
77 buf = (GLubyte *) ctx->Driver.MapBufferRange(ctx, 0, unpack->BufferObj->Size,
79 unpack->BufferObj,
104 const struct gl_pixelstore_attrib *unpack,
112 GLuint src_offset = (x + unpack->SkipPixels) & 0x7;
113 GLuint mask = unpack->LsbFirst ? 0 : 7;
121 __func__, x,y,w,h,width,height,unpack->SkipPixels, src_offset, mask);
137 const GLubyte *rowsrc = _mesa_image_address2d(unpack, bitmap,
176 const struct gl_pixelstore_attrib *unpack,
    [all...]
brw_pixel.h 47 const struct gl_pixelstore_attrib *unpack,
58 const struct gl_pixelstore_attrib *unpack,
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/
intel_pixel_draw.c 54 const struct gl_pixelstore_attrib *unpack,
58 struct intel_buffer_object *src = intel_buffer_object(unpack->BufferObj);
91 if (unpack->SwapBytes || unpack->LsbFirst ||
92 unpack->SkipPixels || unpack->SkipRows) {
97 int src_stride = _mesa_image_row_stride(unpack, width, format, type);
99 /* Mesa flips the src_stride for unpack->Invert, but we want our mt to have
102 if (unpack->Invert) {
108 src_offset += _mesa_image_offset(2, unpack, width, height
    [all...]
intel_pixel_bitmap.c 64 const struct gl_pixelstore_attrib *unpack,
69 if (!_mesa_validate_pbo_access(2, unpack, width, height, 1,
76 buf = (GLubyte *) ctx->Driver.MapBufferRange(ctx, 0, unpack->BufferObj->Size,
78 unpack->BufferObj,
102 const struct gl_pixelstore_attrib *unpack,
110 GLuint src_offset = (x + unpack->SkipPixels) & 0x7;
111 GLuint mask = unpack->LsbFirst ? 0 : 7;
119 __func__, x,y,w,h,width,height,unpack->SkipPixels, src_offset, mask);
135 const GLubyte *rowsrc = _mesa_image_address2d(unpack, bitmap,
174 const struct gl_pixelstore_attrib *unpack,
    [all...]
intel_pixel.h 47 const struct gl_pixelstore_attrib *unpack,
58 const struct gl_pixelstore_attrib *unpack,
  /xsrc/external/mit/MesaLib/dist/src/mesa/swrast/
s_bitmap.c 51 const struct gl_pixelstore_attrib *unpack,
63 bitmap = (const GLubyte *) _mesa_map_pbo_source(ctx, unpack, bitmap);
78 const GLubyte *src = (const GLubyte *) _mesa_image_address2d(unpack,
81 if (unpack->LsbFirst) {
83 GLubyte mask = 1U << (unpack->SkipPixels & 0x7);
105 GLubyte mask = 128U >> (unpack->SkipPixels & 0x7);
137 _mesa_unmap_pbo_source(ctx, unpack);
150 const struct gl_pixelstore_attrib *unpack,
176 const GLubyte *src = (const GLubyte *) _mesa_image_address2d(unpack,
179 if (unpack->LsbFirst)
    [all...]
s_drawpix.c 57 const struct gl_pixelstore_attrib *unpack,
62 _mesa_image_address2d(unpack, pixels, width,
64 const GLint srcRowStride = _mesa_image_row_stride(unpack, width,
106 const struct gl_pixelstore_attrib *unpack,
111 _mesa_image_address2d(unpack, pixels, width,
114 _mesa_image_row_stride(unpack, width, GL_RGBA, GL_UNSIGNED_BYTE);
157 const struct gl_pixelstore_attrib *unpack,
162 _mesa_image_address2d(unpack, pixels, width,
165 _mesa_image_row_stride(unpack, width, format, type);
209 struct gl_pixelstore_attrib unpack; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/swrast/
s_bitmap.c 51 const struct gl_pixelstore_attrib *unpack,
63 bitmap = (const GLubyte *) _mesa_map_pbo_source(ctx, unpack, bitmap);
78 const GLubyte *src = (const GLubyte *) _mesa_image_address2d(unpack,
81 if (unpack->LsbFirst) {
83 GLubyte mask = 1U << (unpack->SkipPixels & 0x7);
105 GLubyte mask = 128U >> (unpack->SkipPixels & 0x7);
137 _mesa_unmap_pbo_source(ctx, unpack);
150 const struct gl_pixelstore_attrib *unpack,
176 const GLubyte *src = (const GLubyte *) _mesa_image_address2d(unpack,
179 if (unpack->LsbFirst)
    [all...]
s_drawpix.c 57 const struct gl_pixelstore_attrib *unpack,
62 _mesa_image_address2d(unpack, pixels, width,
64 const GLint srcRowStride = _mesa_image_row_stride(unpack, width,
106 const struct gl_pixelstore_attrib *unpack,
111 _mesa_image_address2d(unpack, pixels, width,
114 _mesa_image_row_stride(unpack, width, GL_RGBA, GL_UNSIGNED_BYTE);
157 const struct gl_pixelstore_attrib *unpack,
162 _mesa_image_address2d(unpack, pixels, width,
165 _mesa_image_row_stride(unpack, width, format, type);
209 struct gl_pixelstore_attrib unpack; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/vc4/
vc4_qpu_emit.c 166 struct qinst *inst, uint64_t *unpack)
190 /* If we had an unpack on this A-file source, we need to put
194 *last_inst(block) |= *unpack;
195 *unpack = 0;
209 ASSERTED uint32_t unpack = QPU_GET_FIELD(*last_inst(block), QPU_UNPACK); local
217 assert(!unpack || had_pm);
220 assert(!unpack || !had_pm);
296 uint64_t unpack = 0; local
308 assert(!unpack ||
309 unpack == qinst->src[i].pack)
    [all...]
vc4_opt_copy_propagation.c 101 uint8_t unpack; local
103 /* Make sure that the meaning of the unpack
112 /* There's only one unpack field, so make sure
130 unpack = mov->src[0].pack;
132 unpack = inst->src[i].pack;
142 inst->src[i].pack = unpack;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/vc4/
vc4_qpu_emit.c 166 struct qinst *inst, uint64_t *unpack)
190 /* If we had an unpack on this A-file source, we need to put
194 *last_inst(block) |= *unpack;
195 *unpack = 0;
209 MAYBE_UNUSED uint32_t unpack = QPU_GET_FIELD(*last_inst(block), QPU_UNPACK); local
217 assert(!unpack || had_pm);
220 assert(!unpack || !had_pm);
296 uint64_t unpack = 0; local
308 assert(!unpack ||
309 unpack == qinst->src[i].pack)
    [all...]

Completed in 14 milliseconds

1 2 3 4 5