diff options
author | Adam Jackson <ajax@redhat.com> | 2019-10-09 11:27:12 -0400 |
---|---|---|
committer | Adam Jackson <ajax@nwnk.net> | 2019-10-30 16:26:01 +0000 |
commit | ff310903f34ac34c916ad74e919d1ac12aea4715 (patch) | |
tree | ebf341ad2e56854c931b8218176d09c688882dc8 /render | |
parent | 89a9927b1e5ac416441a33b44abddf8372edfe6a (diff) |
mi: Add a default no-op miSourceValidate
Slightly simplifies the callers since they don't need to check for
non-NULL anymore.
I do extremely hate the workarounds here to suppress misprite taking the
cursor down though. Surely there's a better way.
Reviewed-by: Michel Dänzer <mdaenzer@redhat.com>
Diffstat (limited to 'render')
-rw-r--r-- | render/mipict.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/render/mipict.c b/render/mipict.c index 4b855122e..7fb03435b 100644 --- a/render/mipict.c +++ b/render/mipict.c @@ -294,10 +294,8 @@ SourceValidateOnePicture(PicturePtr pPicture) pScreen = pDrawable->pScreen; - if (pScreen->SourceValidate) { - pScreen->SourceValidate(pDrawable, 0, 0, pDrawable->width, - pDrawable->height, pPicture->subWindowMode); - } + pScreen->SourceValidate(pDrawable, 0, 0, pDrawable->width, + pDrawable->height, pPicture->subWindowMode); } void |