st/nine: NineDevice9_SetClipPlane: pPlane must be non-NULL

Reviewed-by: Tiziano Bacocco <tizbac2@gmail.com>
Signed-off-by: Axel Davy <axel.davy@ens.fr>
This commit is contained in:
Axel Davy
2015-01-08 15:11:19 +01:00
parent 02a89dc163
commit 25f1e5584c
+5 -3
View File
@@ -1968,9 +1968,11 @@ NineDevice9_SetClipPlane( struct NineDevice9 *This,
{
struct nine_state *state = This->update;
DBG("This=%p Index=%u pPlane=%p(%f %f %f %f)\n", This, Index, pPlane,
pPlane ? pPlane[0] : 0.0f, pPlane ? pPlane[1] : 0.0f,
pPlane ? pPlane[2] : 0.0f, pPlane ? pPlane[3] : 0.0f);
user_assert(pPlane, D3DERR_INVALIDCALL);
DBG("This=%p Index=%u pPlane=%f %f %f %f\n", This, Index,
pPlane[0], pPlane[1],
pPlane[2], pPlane[3]);
user_assert(Index < PIPE_MAX_CLIP_PLANES, D3DERR_INVALIDCALL);