- Timestamp:
- Nov 26, 2012 6:30:37 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 82311
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_misc.c
r43932 r43966 630 630 GLbitfield mask, GLenum filter) 631 631 { 632 CRContext *ctx = crStateGetCurrent(); 632 633 #ifdef CR_CHECK_BLITS 633 634 // { … … 636 637 GLint sdtex=0, srtex=0; 637 638 GLenum dStatus, rStatus; 638 CRContext *ctx = crStateGetCurrent();639 639 640 640 CRTextureObj *tobj = 0; … … 840 840 #endif 841 841 842 if (ctx->viewport.scissorTest) 843 cr_server.head_spu->dispatch_table.Disable(GL_SCISSOR_TEST); 844 842 845 cr_server.head_spu->dispatch_table.BlitFramebufferEXT(srcX0, srcY0, srcX1, srcY1, 843 846 dstX0, dstY0, dstX1, dstY1, 844 847 mask, filter); 845 848 849 if (ctx->viewport.scissorTest) 850 cr_server.head_spu->dispatch_table.Enable(GL_SCISSOR_TEST); 846 851 //#ifdef CR_CHECK_BLITS 847 852 // crDbgDumpTexImage2D("<== src tex:", GL_TEXTURE_2D, rtex, true);
Note:
See TracChangeset
for help on using the changeset viewer.