Changeset 25155 in vbox for trunk/src/VBox/GuestHost/OpenGL
- Timestamp:
- Dec 3, 2009 12:23:36 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 55577
- Location:
- trunk/src/VBox/GuestHost/OpenGL
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/include/cr_glstate.h
r23274 r25155 158 158 #endif 159 159 160 /*@todo add back buffer, depth and fbos and move out of here*/ 161 GLvoid *pImage; /*stored front buffer image*/ 162 160 163 /** For buffering vertices for selection/feedback */ 161 164 /*@{*/ -
trunk/src/VBox/GuestHost/OpenGL/state_tracker/state_diff.c
r23274 r25155 7 7 #include "state.h" 8 8 #include "cr_error.h" 9 #include "cr_mem.h" 9 10 10 11 void crStateDiffContext( CRContext *from, CRContext *to ) … … 246 247 crStateCurrentSwitch( &(sb->current), bitID, from, to ); 247 248 } 249 250 if (to->pImage) 251 { 252 CRViewportState *pVP = &to->viewport; 253 CRPixelPackState unpack = to->client.unpack; 254 255 diff_api.PixelStorei(GL_UNPACK_SKIP_ROWS, 0); 256 diff_api.PixelStorei(GL_UNPACK_SKIP_PIXELS, 0); 257 diff_api.PixelStorei(GL_UNPACK_ALIGNMENT, 1); 258 diff_api.PixelStorei(GL_UNPACK_ROW_LENGTH, 0); 259 diff_api.PixelStorei(GL_UNPACK_IMAGE_HEIGHT, 0); 260 diff_api.PixelStorei(GL_UNPACK_SKIP_IMAGES, 0); 261 diff_api.PixelStorei(GL_UNPACK_SWAP_BYTES, 0); 262 diff_api.PixelStorei(GL_UNPACK_LSB_FIRST, 0); 263 264 diff_api.DrawBuffer(GL_FRONT); 265 diff_api.WindowPos2iARB(0, 0); 266 diff_api.DrawPixels(pVP->viewportW, pVP->viewportH, GL_RGBA, GL_UNSIGNED_BYTE, to->pImage); 267 268 diff_api.WindowPos3fvARB(to->current.rasterAttrib[VERT_ATTRIB_POS]); 269 diff_api.DrawBuffer(to->framebufferobject.drawFB ? 270 to->framebufferobject.drawFB->drawbuffer[0] : to->buffer.drawBuffer); 271 diff_api.PixelStorei(GL_UNPACK_SKIP_ROWS, unpack.skipRows); 272 diff_api.PixelStorei(GL_UNPACK_SKIP_PIXELS, unpack.skipPixels); 273 diff_api.PixelStorei(GL_UNPACK_ALIGNMENT, unpack.alignment); 274 diff_api.PixelStorei(GL_UNPACK_ROW_LENGTH, unpack.rowLength); 275 diff_api.PixelStorei(GL_UNPACK_IMAGE_HEIGHT, unpack.imageHeight); 276 diff_api.PixelStorei(GL_UNPACK_SKIP_IMAGES, unpack.skipImages); 277 diff_api.PixelStorei(GL_UNPACK_SWAP_BYTES, unpack.swapBytes); 278 diff_api.PixelStorei(GL_UNPACK_LSB_FIRST, unpack.psLSBFirst); 279 280 crFree(to->pImage); 281 to->pImage = NULL; 282 } 248 283 } -
trunk/src/VBox/GuestHost/OpenGL/state_tracker/state_init.c
r23274 r25155 77 77 int node32 = i >> 5; 78 78 int node = i & 0x1f; 79 80 ctx->pImage = NULL; 79 81 80 82 ctx->id = i; … … 194 196 crStateFramebufferObjectDestroy(ctx); 195 197 crStateGLSLDestroy(ctx); 198 if (ctx->pImage) crFree(ctx->pImage); 196 199 crFree( ctx ); 197 200 } -
trunk/src/VBox/GuestHost/OpenGL/state_tracker/state_snapshot.c
r25154 r25155 1125 1125 diff_api.PixelStorei(GL_PACK_LSB_FIRST, 0); 1126 1126 1127 diff_api.ReadBuffer(GL_FRONT); 1127 1128 diff_api.ReadPixels(0, 0, pVP->viewportW, pVP->viewportH, GL_RGBA, GL_UNSIGNED_BYTE, pData); 1128 1129 1130 diff_api.ReadBuffer(pContext->framebufferobject.readFB ? 1131 pContext->framebufferobject.readFB->readbuffer : pContext->buffer.readBuffer); 1129 1132 diff_api.PixelStorei(GL_PACK_SKIP_ROWS, packing.skipRows); 1130 1133 diff_api.PixelStorei(GL_PACK_SKIP_PIXELS, packing.skipPixels); … … 1786 1789 { 1787 1790 CRViewportState *pVP = &pContext->viewport; 1788 CRPixelPackState unpack = pContext->client.unpack;1789 1791 GLint cbData = crPixelSize(GL_RGBA, GL_UNSIGNED_BYTE) * pVP->viewportH * pVP->viewportW; 1790 1792 void *pData = crAlloc(cbData); … … 1792 1794 if (!pData) 1793 1795 { 1796 pContext->pImage = NULL; 1794 1797 return VERR_NO_MEMORY; 1795 1798 } … … 1798 1801 AssertRCReturn(rc, rc); 1799 1802 1800 diff_api.PixelStorei(GL_UNPACK_SKIP_ROWS, 0); 1801 diff_api.PixelStorei(GL_UNPACK_SKIP_PIXELS, 0); 1802 diff_api.PixelStorei(GL_UNPACK_ALIGNMENT, 1); 1803 diff_api.PixelStorei(GL_UNPACK_ROW_LENGTH, 0); 1804 diff_api.PixelStorei(GL_UNPACK_IMAGE_HEIGHT, 0); 1805 diff_api.PixelStorei(GL_UNPACK_SKIP_IMAGES, 0); 1806 diff_api.PixelStorei(GL_UNPACK_SWAP_BYTES, 0); 1807 diff_api.PixelStorei(GL_UNPACK_LSB_FIRST, 0); 1808 1809 diff_api.WindowPos2iARB(0, 0); 1810 diff_api.DrawPixels(pVP->viewportW, pVP->viewportH, GL_RGBA, GL_UNSIGNED_BYTE, pData); 1811 1812 diff_api.PixelStorei(GL_UNPACK_SKIP_ROWS, unpack.skipRows); 1813 diff_api.PixelStorei(GL_UNPACK_SKIP_PIXELS, unpack.skipPixels); 1814 diff_api.PixelStorei(GL_UNPACK_ALIGNMENT, unpack.alignment); 1815 diff_api.PixelStorei(GL_UNPACK_ROW_LENGTH, unpack.rowLength); 1816 diff_api.PixelStorei(GL_UNPACK_IMAGE_HEIGHT, unpack.imageHeight); 1817 diff_api.PixelStorei(GL_UNPACK_SKIP_IMAGES, unpack.skipImages); 1818 diff_api.PixelStorei(GL_UNPACK_SWAP_BYTES, unpack.swapBytes); 1819 diff_api.PixelStorei(GL_UNPACK_LSB_FIRST, unpack.psLSBFirst); 1820 1821 crFree(pData); 1803 pContext->pImage = pData; 1822 1804 } 1823 1805
Note:
See TracChangeset
for help on using the changeset viewer.