diff options
author | Axel Davy <[email protected]> | 2015-02-20 12:51:55 +0100 |
---|---|---|
committer | Axel Davy <[email protected]> | 2015-04-29 08:28:10 +0200 |
commit | e7b1a1e57cdfd8d019ba0ff4cdc2c7239066869f (patch) | |
tree | 14aa84ae7357f72f2c83631d0674a64996fd6e5b /src/gallium/state_trackers/nine/device9.c | |
parent | 907f28f87e3858028bce4477f0b57f7e5d76060a (diff) |
st/nine: Do not advertise D3DDEVCAPS_TEXTURESYSTEMMEMORY
No major vendor advertises it, and we weren't supporting it.
Reviewed-by: Ilia Mirkin <[email protected]>
Signed-off-by: Axel Davy <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers/nine/device9.c')
-rw-r--r-- | src/gallium/state_trackers/nine/device9.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/gallium/state_trackers/nine/device9.c b/src/gallium/state_trackers/nine/device9.c index 9ca1bb93597..1a776a777ca 100644 --- a/src/gallium/state_trackers/nine/device9.c +++ b/src/gallium/state_trackers/nine/device9.c @@ -2406,14 +2406,8 @@ NineDevice9_SetTexture( struct NineDevice9 *This, Stage == D3DDMAPSAMPLER || (Stage >= D3DVERTEXTEXTURESAMPLER0 && Stage <= D3DVERTEXTEXTURESAMPLER3), D3DERR_INVALIDCALL); - user_assert(!tex || tex->base.pool != D3DPOOL_SCRATCH, D3DERR_INVALIDCALL); - - if (unlikely(tex && tex->base.pool == D3DPOOL_SYSTEMMEM)) { - /* TODO: Currently not implemented. Better return error - * with message telling what's wrong */ - ERR("This=%p D3DPOOL_SYSTEMMEM not implemented for SetTexture\n", This); - user_assert(tex->base.pool != D3DPOOL_SYSTEMMEM, D3DERR_INVALIDCALL); - } + user_assert(!tex || (tex->base.pool != D3DPOOL_SCRATCH && + tex->base.pool != D3DPOOL_SYSTEMMEM), D3DERR_INVALIDCALL); if (Stage >= D3DDMAPSAMPLER) Stage = Stage - D3DDMAPSAMPLER + NINE_MAX_SAMPLERS_PS; |