Changeset 46343 in vbox for trunk/src/VBox/HostServices/SharedOpenGL/render
- Timestamp:
- May 31, 2013 1:27:10 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 86135
- Location:
- trunk/src/VBox/HostServices/SharedOpenGL/render
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/render/renderspu.c
r45921 r46343 679 679 DstRect.xRight = paDstRegions[i].xRight * scaleX; 680 680 DstRect.yBottom = paDstRegions[i].yBottom * scaleY; 681 CrBltBlitTexMural(pBlitter, &pEntry->Tex, &paSrcRegions[i], &DstRect, 1, CRBLT_F_LINEAR | CRBLT_F_INVERT_YCOORDS);681 CrBltBlitTexMural(pBlitter, true, &pEntry->Tex, &paSrcRegions[i], &DstRect, 1, CRBLT_F_LINEAR | CRBLT_F_INVERT_YCOORDS); 682 682 } 683 683 } … … 701 701 if (RT_SUCCESS(rc)) 702 702 { 703 CrBltBlitTexMural(pBlitter, &pEntry->Tex, paSrcRegions, paDstRegions, cRegions, CRBLT_F_LINEAR | CRBLT_F_INVERT_YCOORDS);703 CrBltBlitTexMural(pBlitter, true, &pEntry->Tex, paSrcRegions, paDstRegions, cRegions, CRBLT_F_LINEAR | CRBLT_F_INVERT_YCOORDS); 704 704 } 705 705 else -
trunk/src/VBox/HostServices/SharedOpenGL/render/renderspu_cocoa_helper.m
r45673 r46343 1284 1284 } 1285 1285 1286 CrBltBlitTexMural(m_pBlitter, &pEntry->Tex, pSrcRect, pDstRect, 1, CRBLT_F_LINEAR | CRBLT_F_INVERT_YCOORDS);1286 CrBltBlitTexMural(m_pBlitter, true, &pEntry->Tex, pSrcRect, pDstRect, 1, CRBLT_F_LINEAR | CRBLT_F_INVERT_YCOORDS); 1287 1287 } 1288 1288 CrBltLeave(m_pBlitter); … … 1407 1407 } 1408 1408 1409 CrBltBlitTexMural(m_pBlitter, &pEntry->Tex, pSrcRect, pDstRect, 1, CRBLT_F_LINEAR | CRBLT_F_INVERT_SRC_YCOORDS);1409 CrBltBlitTexMural(m_pBlitter, true, &pEntry->Tex, pSrcRect, pDstRect, 1, CRBLT_F_LINEAR | CRBLT_F_INVERT_SRC_YCOORDS); 1410 1410 } 1411 1411 CrBltLeave(m_pBlitter);
Note:
See TracChangeset
for help on using the changeset viewer.