aboutsummaryrefslogtreecommitdiff
path: root/common/system.h
diff options
context:
space:
mode:
authorMax Horn2004-10-15 19:54:14 +0000
committerMax Horn2004-10-15 19:54:14 +0000
commitccb8d04f35baeca212ef535c208f7e7abdc62ebf (patch)
treef5a5558740e7a6f4a8781a3e276ca40b2ff60bf7 /common/system.h
parent37ba67178c949ee3085a93d929568402ed6692a9 (diff)
downloadscummvm-rg350-ccb8d04f35baeca212ef535c208f7e7abdc62ebf.tar.gz
scummvm-rg350-ccb8d04f35baeca212ef535c208f7e7abdc62ebf.tar.bz2
scummvm-rg350-ccb8d04f35baeca212ef535c208f7e7abdc62ebf.zip
Clarify OSystem::setPalette documentation (thanks for pointing this out, LordHoto)
svn-id: r15562
Diffstat (limited to 'common/system.h')
-rw-r--r--common/system.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/common/system.h b/common/system.h
index f962b9efe9..2f2aeab7ec 100644
--- a/common/system.h
+++ b/common/system.h
@@ -235,12 +235,14 @@ public:
/**
* Replace the specified range of the palette with new colors.
* The palette entries from 'start' till (start+num-1) will be replaced - so
- * a full palette update is acomplished via start=0, num=256.
- * The palette data is specified in interleaved RGB format. That is, the
+ * a full palette update is accomplished via start=0, num=256.
+ *
+ * The palette data is specified in interleaved RGBA format. That is, the
* first byte of the memory block 'colors' points at is the red component
* of the first new color; the second byte the blue component of the first
- * new color; the third byte the green compont. Then the second color
- * starts, and so on. So memory looks like this: R1-G1-B1-R2-G2-B2-R3-...
+ * new color; the third byte the green component, the last byte to the alpha
+ * (transparency) value. Then the second color starts, and so on. So memory
+ * looks like this: R1-G1-B1-A1-R2-G2-B2-A2-R3-...
*
* @param colors the new colors, in interleaved RGB format
* @param start the first palette entry to be updated
@@ -248,6 +250,8 @@ public:
*
* @note It is an error if start+num exceeds 256, behaviour is undefined
* in that case (the backend may ignore it silently or assert).
+ * @note The alpha value is not actually used, and future revisions of this
+ * API are probably going to remove it.
*/
virtual void setPalette(const byte *colors, uint start, uint num) = 0;