diff options
author | Rick Tillery <rtillery@ti.com> | 2011-12-08 15:01:20 -0600 |
---|---|---|
committer | Gerrit Code Review <gerrit2@git.omapzoom.org> | 2011-12-08 15:01:20 -0600 |
commit | f51708b147d99bf54b53e078b0b39db3ee1c07ed (patch) | |
tree | ffc276b5989b09c7ad8229ecb102a0539016f4fc | |
parent | 9105e8597ffc9d6f51f3fdda4b831ad9f15a4636 (diff) | |
parent | 00abc9cdf8f3785defc4d770958ff12925b19715 (diff) | |
download | hardware_ti_omap4-f51708b147d99bf54b53e078b0b39db3ee1c07ed.zip hardware_ti_omap4-f51708b147d99bf54b53e078b0b39db3ee1c07ed.tar.gz hardware_ti_omap4-f51708b147d99bf54b53e078b0b39db3ee1c07ed.tar.bz2 |
Merge "Added BLTsville error codes for palettes."
-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 */ |