diff options
author | RichieSams | 2014-12-30 01:19:54 -0600 |
---|---|---|
committer | RichieSams | 2014-12-30 01:19:54 -0600 |
commit | 1f5736a9020796e6986a15ea4d3b627b81233241 (patch) | |
tree | d782ea926a58f34c0169abf082d48bf54fc10647 /engines/zvision/graphics | |
parent | 68d3ebd57b0313e517032681a119b47956803e71 (diff) | |
download | scummvm-rg350-1f5736a9020796e6986a15ea4d3b627b81233241.tar.gz scummvm-rg350-1f5736a9020796e6986a15ea4d3b627b81233241.tar.bz2 scummvm-rg350-1f5736a9020796e6986a15ea4d3b627b81233241.zip |
ZVISION: Update function documentation to represent the changes to the internal pixel format
Aka: We keep everything as 555, and only convert to 565 before we send everything to the backend
Diffstat (limited to 'engines/zvision/graphics')
-rw-r--r-- | engines/zvision/graphics/render_manager.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/engines/zvision/graphics/render_manager.h b/engines/zvision/graphics/render_manager.h index 9002d66b47..c22f9a78c9 100644 --- a/engines/zvision/graphics/render_manager.h +++ b/engines/zvision/graphics/render_manager.h @@ -277,8 +277,7 @@ public: void prepareBackground(); /** - * Reads an image file pixel data into a Surface buffer. In the process - * it converts the pixel data from RGB 555 to RGB 565. Also, if the image + * Reads an image file pixel data into a Surface buffer. Also, if the image * is transposed, it will un-transpose the pixel data. The function will * call destination::create() if the dimensions of destination do not match * up with the dimensions of the image. @@ -289,8 +288,7 @@ public: void readImageToSurface(const Common::String &fileName, Graphics::Surface &destination); /** - * Reads an image file pixel data into a Surface buffer. In the process - * it converts the pixel data from RGB 555 to RGB 565. Also, if the image + * Reads an image file pixel data into a Surface buffer. Also, if the image * is transposed, it will un-transpose the pixel data. The function will * call destination::create() if the dimensions of destination do not match * up with the dimensions of the image. |