diff options
author | Rick Tillery <rtillery@ti.com> | 2011-11-28 13:46:33 -0600 |
---|---|---|
committer | Rick Tillery <rtillery@ti.com> | 2011-11-28 13:46:33 -0600 |
commit | 00abc9cdf8f3785defc4d770958ff12925b19715 (patch) | |
tree | cfeb85669b3e1fa9b15e98835afda6ce8c7810b2 | |
parent | 7661b1d72345c24990e57c765f937fa74ab14c66 (diff) | |
download | hardware_ti_omap4-00abc9cdf8f3785defc4d770958ff12925b19715.zip hardware_ti_omap4-00abc9cdf8f3785defc4d770958ff12925b19715.tar.gz hardware_ti_omap4-00abc9cdf8f3785defc4d770958ff12925b19715.tar.bz2 |
Added BLTsville error codes for palettes.
Change-Id: I6b2d842be5b6278f1813750ba8a87717ad7b4ffa
Signed-off-by: Rick Tillery <rtillery@ti.com>
-rwxr-xr-x | bltsville/include/bverror.h | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/bltsville/include/bverror.h b/bltsville/include/bverror.h index 513ed19..f99eacb 100755 --- a/bltsville/include/bverror.h +++ b/bltsville/include/bverror.h @@ -106,6 +106,9 @@ enum bverror { BVERRDEF_VENDOR_ALL + 27200, BVERR_DSTGEOM_STRIDE = /* bltparams.dstgeom.stride not supported */ BVERRDEF_VENDOR_ALL + 27300, + BVERR_DSTGEOM_PALETTE = /* dstgeom.paletteformat not supported */ + BVERRDEF_VENDOR_ALL + 27400, + BVERR_DSTRECT = /* bvbltparams.dstrect not supported */ BVERRDEF_VENDOR_ALL + 28000, @@ -121,7 +124,7 @@ enum bverror { BVERR_SRC1DESC_ALIGNMENT = /* unsupported buffer base address */ BVERRDEF_VENDOR_ALL + 29400, - BVERR_SRC1GEOM = /* invalid bvbltparams.src1geom */ + BVERR_SRC1GEOM = /* invalid bvbltparams.src1geom */ BVERRDEF_VENDOR_ALL + 30000, BVERR_SRC1GEOM_VERS = /* src1geom.structsize too small */ BVERRDEF_VENDOR_ALL + 30100, @@ -129,8 +132,10 @@ enum bverror { BVERRDEF_VENDOR_ALL + 30200, BVERR_SRC1GEOM_STRIDE = /* bltparams.src1geom.stride not supported */ BVERRDEF_VENDOR_ALL + 30300, + BVERR_SRC1GEOM_PALETTE = /* src1geom.paletteformat not supported */ + BVERRDEF_VENDOR_ALL + 30400, - BVERR_SRC1RECT = /* bvbltparams.src1rect not supported */ + BVERR_SRC1RECT = /* bvbltparams.src1rect not supported */ BVERRDEF_VENDOR_ALL + 31000, BVERR_SRC1_HORZSCALE = /* horz scale for src1->dst not supported */ @@ -174,7 +179,7 @@ enum bverror { BVERR_SRC2DESC_ALIGNMENT = /* unsupported buffer base address */ BVERRDEF_VENDOR_ALL + 33400, - BVERR_SRC2GEOM = /* invalid bvbltparams.src2geom */ + BVERR_SRC2GEOM = /* invalid bvbltparams.src2geom */ BVERRDEF_VENDOR_ALL + 34000, BVERR_SRC2GEOM_VERS = /* src2geom.structsize too small */ BVERRDEF_VENDOR_ALL + 34100, @@ -182,8 +187,10 @@ enum bverror { BVERRDEF_VENDOR_ALL + 34200, BVERR_SRC2GEOM_STRIDE = /* bltparams.src2geom.stride not supported */ BVERRDEF_VENDOR_ALL + 34300, + BVERR_SRC2GEOM_PALETTE = /* src2geom.paletteformat not supported */ + BVERRDEF_VENDOR_ALL + 34400, - BVERR_SRC2RECT = /* bvbltparams.src2rect not supported */ + BVERR_SRC2RECT = /* bvbltparams.src2rect not supported */ BVERRDEF_VENDOR_ALL + 35000, BVERR_SRC2_HORZSCALE = /* horz scale for src2->dst not supported */ @@ -227,7 +234,7 @@ enum bverror { BVERR_MASKDESC_ALIGNMENT = /* unsupported buffer base address */ BVERRDEF_VENDOR_ALL + 37400, - BVERR_MASKGEOM = /* invalid bvbltparams.maskgeom */ + BVERR_MASKGEOM = /* invalid bvbltparams.maskgeom */ BVERRDEF_VENDOR_ALL + 38000, BVERR_MASKGEOM_VERS = /* maskgeom.structsize too small */ BVERRDEF_VENDOR_ALL + 38100, @@ -235,8 +242,10 @@ enum bverror { BVERRDEF_VENDOR_ALL + 38200, BVERR_MASKGEOM_STRIDE = /* bltparams.maskgeom.stride not supported */ BVERRDEF_VENDOR_ALL + 38300, + BVERR_MASKGEOM_PALETTE = /* maskgeom.paletteformat not supported */ + BVERRDEF_VENDOR_ALL + 38400, - BVERR_MASKRECT = /* bvbltparams.maskrect not supported */ + BVERR_MASKRECT = /* bvbltparams.maskrect not supported */ BVERRDEF_VENDOR_ALL + 39000, BVERR_MASK_HORZSCALE = /* horz scale for mask->dst not supported */ |