1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
| void SERVER_DISPATCH_APIENTRY crServerDispatchReadPixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLvoid *pixels) { const GLint stride = READ_DATA( 24, GLint ); const GLint alignment = READ_DATA( 28, GLint ); const GLint skipRows = READ_DATA( 32, GLint ); const GLint skipPixels = READ_DATA( 36, GLint ); const GLint bytes_per_row = READ_DATA( 40, GLint ); const GLint rowLength = READ_DATA( 44, GLint );
CRASSERT(bytes_per_row > 0);
#ifdef CR_ARB_pixel_buffer_object if (crStateIsBufferBound(GL_PIXEL_PACK_BUFFER_ARB)) { GLvoid *pbo_offset;
pbo_offset = (GLvoid*) ((uintptr_t) *((GLint*)pixels));
cr_server.head_spu->dispatch_table.ReadPixels(x, y, width, height, format, type, pbo_offset); } else #endif { CRMessageReadPixels *rp; uint32_t msg_len;
if (bytes_per_row < 0 || bytes_per_row > UINT32_MAX / 8 || height > UINT32_MAX / 8) { crError("crServerDispatchReadPixels: parameters out of range"); return; }
msg_len = sizeof(*rp) + (uint32_t)bytes_per_row * height;
rp = (CRMessageReadPixels *) crAlloc( msg_len ); if (!rp) { crError("crServerDispatchReadPixels: out of memory"); return; }
cr_server.head_spu->dispatch_table.ReadPixels(x, y, width, height, format, type, rp + 1);
rp->header.type = CR_MESSAGE_READ_PIXELS; rp->width = width; rp->height = height; rp->bytes_per_row = bytes_per_row; rp->stride = stride; rp->format = format; rp->type = type; rp->alignment = alignment; rp->skipRows = skipRows; rp->skipPixels = skipPixels; rp->rowLength = rowLength;
crMemcpy( &rp->pixels, pixels, sizeof(rp->pixels) ); crNetSend( cr_server.curClient->conn, NULL, rp, msg_len ); crFree( rp ); } }
|