Changeset 69420 in vbox
- Timestamp:
- Oct 27, 2017 10:22:13 AM (7 years ago)
- Location:
- trunk/src/VBox/Devices/Graphics/shaderlib
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/shaderlib/shaderapi.c
r69092 r69420 46 46 #endif 47 47 48 #undef GL_EXT_FUNCS_GEN 48 #undef GL_EXT_FUNCS_GEN 49 49 #define GL_EXT_FUNCS_GEN \ 50 50 /* GL_ARB_shader_objects */ \ … … 384 384 385 385 object->lpVtbl->Release((IWineD3DVertexShader *)object); 386 386 return VINF_SUCCESS; 387 387 } 388 388 … … 395 395 396 396 object->lpVtbl->Release((IWineD3DPixelShader *)object); 397 397 return VINF_SUCCESS; 398 398 } 399 399 … … 634 634 635 635 Log(("ShaderSetPositionTransformed viewport (%d,%d) fPreTransformed=%d\n", cxViewPort, cyViewPort, fPreTransformed)); 636 636 637 637 if (fPreTransformed) 638 638 { /* In the pre-transformed vertex coordinate case we need to disable all transformations as we're already using screen coordinates. */ … … 673 673 pThis->rtHeight = rtHeight; 674 674 675 /* @todo missing state:675 /** @todo missing state: 676 676 * - fog enable (stateblock->renderState[WINED3DRS_FOGENABLE]) 677 677 * - fog mode (stateblock->renderState[WINED3DRS_FOGTABLEMODE]) … … 749 749 glTranslatef(xoffset, -yoffset, -1.0f); 750 750 751 if (fPretransformed) 751 if (fPretransformed) 752 752 { 753 753 /* One world coordinate equals one screen pixel; y-inversion no longer an issue */ -
trunk/src/VBox/Devices/Graphics/shaderlib/vboxext.h
r62950 r69420 5 5 6 6 /* 7 *8 7 * Copyright (C) 2011-2016 Oracle Corporation 9 8 * -
trunk/src/VBox/Devices/Graphics/shaderlib/wine/vbox/VBoxDbgGl.c
r62514 r69420 1 1 /* $Id$ */ 2 3 2 /** @file 4 3 * VBox wine & ogl debugging stuff -
trunk/src/VBox/Devices/Graphics/shaderlib/wine/vbox/VBoxDbgGl.h
r62514 r69420 1 1 /* $Id$ */ 2 3 2 /** @file 4 3 * VBox wine & ogl debugging stuff -
trunk/src/VBox/Devices/Graphics/shaderlib/wine/vbox/VBoxWineEx.h
r62514 r69420 1 /* $Id$ */ 1 2 /** @file 2 *3 3 * VBox extension to Wine D3D 4 * 4 */ 5 6 /* 5 7 * Copyright (C) 2010-2016 Oracle Corporation 6 8 * … … 13 15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 14 16 */ 17 15 18 #ifndef ___VBoxWineEx_h__ 16 19 #define ___VBoxWineEx_h__ … … 43 46 44 47 typedef VBOXWINEEX_DECL(HRESULT) FNVBOXWINEEXD3DDEV9_CREATECUBETEXTURE(IDirect3DDevice9Ex *iface, 45 UINT edge_length, UINT levels, DWORD usage, D3DFORMAT format, 48 UINT edge_length, UINT levels, DWORD usage, D3DFORMAT format, 46 49 D3DPOOL pool, IDirect3DCubeTexture9 **texture, HANDLE *shared_handle, 47 50 void **pavClientMem);
Note:
See TracChangeset
for help on using the changeset viewer.