Changeset 105566 in vbox for trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/dx/VBoxDXDDI.cpp
- Timestamp:
- Aug 1, 2024 1:57:57 PM (7 months ago)
- svn:sync-xref-src-repo-rev:
- 164237
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/dx/VBoxDXDDI.cpp
r102809 r105566 788 788 PVBOXDX_DEVICE pDevice = (PVBOXDX_DEVICE)hDevice.pDrvPrivate; 789 789 PVBOXDX_BLENDSTATE pBlendState = (PVBOXDX_BLENDSTATE)hBlendState.pDrvPrivate; 790 LogFlowFunc(("pDevice 0x%p, pBlendState 0x%p, SampleMask 0x%x", pDevice, pBlendState, SampleMask)); 790 LogFlowFunc(("pDevice 0x%p, pBlendState 0x%p, BlendFactor (" FLOAT_FMT_STR ", " FLOAT_FMT_STR ", " FLOAT_FMT_STR ", " FLOAT_FMT_STR "), SampleMask 0x%x", 791 pDevice, pBlendState, FLOAT_FMT_ARGS(BlendFactor[0]), FLOAT_FMT_ARGS(BlendFactor[1]), FLOAT_FMT_ARGS(BlendFactor[2]), FLOAT_FMT_ARGS(BlendFactor[3]), SampleMask)); 792 793 #ifdef LOG_ENABLED 794 if (pBlendState) 795 { 796 LogFlowFunc(("[%u] ATCE %d, IBE %d, RT: b %d, lo %d, src %d, dest %d. op %d, asrc %d, adest %d. aop %d, lo %d, m %x\n", 797 pBlendState->uBlendId, pBlendState->BlendDesc.AlphaToCoverageEnable, pBlendState->BlendDesc.IndependentBlendEnable, 798 pBlendState->BlendDesc.RenderTarget[0].BlendEnable, 799 pBlendState->BlendDesc.RenderTarget[0].LogicOpEnable, 800 pBlendState->BlendDesc.RenderTarget[0].SrcBlend, 801 pBlendState->BlendDesc.RenderTarget[0].DestBlend, 802 pBlendState->BlendDesc.RenderTarget[0].BlendOp, 803 pBlendState->BlendDesc.RenderTarget[0].SrcBlendAlpha, 804 pBlendState->BlendDesc.RenderTarget[0].DestBlendAlpha, 805 pBlendState->BlendDesc.RenderTarget[0].BlendOpAlpha, 806 pBlendState->BlendDesc.RenderTarget[0].LogicOp, 807 pBlendState->BlendDesc.RenderTarget[0].RenderTargetWriteMask)); 808 } 809 #endif 810 791 811 792 812 vboxDXSetBlendState(pDevice, pBlendState, BlendFactor, SampleMask);
Note:
See TracChangeset
for help on using the changeset viewer.