Searched defs:Stage (Results 1 - 6 of 6) sorted by relevance

/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Dstate.c1980 BOOL isAlpha, int Stage, WINED3DTEXTUREOP op, DWORD arg1, DWORD arg2, DWORD arg3)
1993 TRACE("Alpha?(%d), Stage:%d Op(%s), a1(%d), a2(%d), a3(%d)\n", isAlpha, Stage, debug_d3dtop(op), arg1, arg2, arg3);
2031 if (is_invalid_op(This, Stage, op, arg1, arg2, arg3)) {
2036 if (isAlpha && This->stateBlock->textures[Stage] == NULL && arg1 == WINED3DTA_TEXTURE) {
2978 op2 = This->stateBlock->textureState[Stage][WINED3DTSS_COLOROP];
2980 op2 = This->stateBlock->textureState[Stage][WINED3DTSS_ALPHAOP];
3045 TRACE("Stage disabled\n");
1979 set_tex_op(const struct wined3d_context *context, IWineD3DDevice *iface, BOOL isAlpha, int Stage, WINED3DTEXTUREOP op, DWORD arg1, DWORD arg2, DWORD arg3) argument
H A Ddevice.c4079 * Get / Set Texture Stage States
4082 static HRESULT WINAPI IWineD3DDeviceImpl_SetTextureStageState(IWineD3DDevice *iface, DWORD Stage, WINED3DTEXTURESTAGESTATETYPE Type, DWORD Value) { argument
4084 DWORD oldValue = This->updateStateBlock->textureState[Stage][Type];
4087 TRACE("(%p) : Stage=%d, Type=%s(%d), Value=%d\n", This, Stage, debug_d3dtexturestate(Type), Type, Value);
4089 if (Stage >= gl_info->limits.texture_stages)
4092 Stage, gl_info->limits.texture_stages - 1);
4096 This->updateStateBlock->changed.textureState[Stage] |= 1 << Type;
4097 This->updateStateBlock->textureState[Stage][Type] = Value;
4110 if(Stage > Thi
4159 IWineD3DDeviceImpl_GetTextureStageState(IWineD3DDevice *iface, DWORD Stage, WINED3DTEXTURESTAGESTATETYPE Type, DWORD* pValue) argument
4285 IWineD3DDeviceImpl_GetTexture(IWineD3DDevice *iface, DWORD Stage, IWineD3DBaseTexture** ppTexture) argument
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/d3d8/
H A Ddevice.c1480 static HRESULT WINAPI IDirect3DDevice8Impl_GetTexture(LPDIRECT3DDEVICE8 iface, DWORD Stage,IDirect3DBaseTexture8** ppTexture) { argument
1485 TRACE("iface %p, stage %u, texture %p.\n", iface, Stage, ppTexture);
1492 hr = IWineD3DDevice_GetTexture(This->WineD3DDevice, Stage, &retTexture);
1495 WARN("Failed to get texture for stage %u, hr %#x.\n", Stage, hr);
1515 static HRESULT WINAPI IDirect3DDevice8Impl_SetTexture(LPDIRECT3DDEVICE8 iface, DWORD Stage, IDirect3DBaseTexture8* pTexture) { argument
1519 TRACE("iface %p, stage %u, texture %p.\n", iface, Stage, pTexture);
1522 hr = IWineD3DDevice_SetTexture(This->WineD3DDevice, Stage,
1567 static HRESULT WINAPI IDirect3DDevice8Impl_GetTextureStageState(LPDIRECT3DDEVICE8 iface, DWORD Stage,D3DTEXTURESTAGESTATETYPE Type,DWORD* pValue) { argument
1572 TRACE("iface %p, stage %u, state %#x, value %p.\n", iface, Stage, Type, pValue);
1575 if (l->sampler_state) hr = IWineD3DDevice_GetSamplerState(This->WineD3DDevice, Stage,
1582 IDirect3DDevice8Impl_SetTextureStageState(LPDIRECT3DDEVICE8 iface, DWORD Stage, D3DTEXTURESTAGESTATETYPE Type, DWORD Value) argument
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/
H A Dstate.c2100 BOOL isAlpha, int Stage, enum wined3d_texture_op op, DWORD arg1, DWORD arg2, DWORD arg3)
2111 TRACE("Alpha?(%d), Stage:%d Op(%s), a1(%d), a2(%d), a3(%d)\n", isAlpha, Stage, debug_d3dtop(op), arg1, arg2, arg3);
2151 if (is_invalid_op(state, Stage, op, arg1, arg2, arg3))
2157 if (isAlpha && !state->textures[Stage] && arg1 == WINED3DTA_TEXTURE)
3108 op2 = state->texture_states[Stage][WINED3D_TSS_COLOR_OP];
3110 op2 = state->texture_states[Stage][WINED3D_TSS_ALPHA_OP];
3178 TRACE("Stage disabled\n");
2099 set_tex_op(const struct wined3d_gl_info *gl_info, const struct wined3d_state *state, BOOL isAlpha, int Stage, enum wined3d_texture_op op, DWORD arg1, DWORD arg2, DWORD arg3) argument
/vbox/src/VBox/Additions/WINNT/Graphics/Video/disp/wddm/
H A DVBoxDispD3D.cpp2336 hr = pDevice9If->SetTextureStageState(pData->Stage, D3DTEXTURESTAGESTATETYPE(lookup.dType), pData->Value);
2340 hr = pDevice9If->SetSamplerState(pData->Stage, D3DSAMPLERSTATETYPE(lookup.dType), pData->Value);
2348 static HRESULT APIENTRY vboxWddmDDevSetTexture(HANDLE hDevice, UINT Stage, HANDLE hTexture) argument
2389 int idx = VBOXWDDMDISP_SAMPLER_IDX(Stage);
2394 if (VBOXWDDMDISP_SAMPLER_IDX_IS_SPECIAL(Stage))
2408 WARN(("incorrect dampler index1! (%d)\n", Stage));
2415 int idx = VBOXWDDMDISP_SAMPLER_IDX(Stage);
2429 WARN(("incorrect dampler index2! (%d)\n", Stage));
2433 HRESULT hr = pDevice9If->SetTexture(Stage, pD3DIfTex);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/d3d9/
H A Ddevice.c1947 static HRESULT WINAPI IDirect3DDevice9Impl_GetTexture(LPDIRECT3DDEVICE9EX iface, DWORD Stage, IDirect3DBaseTexture9 **ppTexture) { argument
1952 TRACE("iface %p, stage %u, texture %p.\n", iface, Stage, ppTexture);
1960 rc = IWineD3DDevice_GetTexture(This->WineD3DDevice, Stage, &retTexture);
1966 WARN("Call to get texture (%d) failed (%p)\n", Stage, retTexture);
1976 static HRESULT WINAPI IDirect3DDevice9Impl_SetTexture(LPDIRECT3DDEVICE9EX iface, DWORD Stage, IDirect3DBaseTexture9* pTexture) { argument
1980 TRACE("iface %p, stage %u, texture %p.\n", iface, Stage, pTexture);
1983 hr = IWineD3DDevice_SetTexture(This->WineD3DDevice, Stage,
2028 static HRESULT WINAPI IDirect3DDevice9Impl_GetTextureStageState(LPDIRECT3DDEVICE9EX iface, DWORD Stage, D3DTEXTURESTAGESTATETYPE Type, DWORD* pValue) { argument
2032 TRACE("iface %p, stage %u, state %#x, value %p.\n", iface, Stage, Type, pValue);
2035 hr = IWineD3DDevice_GetTextureStageState(This->WineD3DDevice, Stage, tss_looku
2042 IDirect3DDevice9Impl_SetTextureStageState(LPDIRECT3DDEVICE9EX iface, DWORD Stage, D3DTEXTURESTAGESTATETYPE Type, DWORD Value) argument
[all...]

Completed in 107 milliseconds