diff options
author | Tavian Barnes <tavianator@gmail.com> | 2009-06-26 15:51:17 +0000 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2009-06-26 15:51:17 +0000 |
commit | 9f0fb6f24b8da085cfbc8612067ac0370b71ebc4 (patch) | |
tree | 44b96978174a03fed3da95d561c3a64f3f89cfbe /libdimensionxx/dimensionxx | |
parent | 3ee98f3bac24fd1c70a9de3e0fbe774e762c25b3 (diff) | |
download | dimension-9f0fb6f24b8da085cfbc8612067ac0370b71ebc4.tar.xz |
Remove thread-synchronicity from canvases.
Diffstat (limited to 'libdimensionxx/dimensionxx')
-rw-r--r-- | libdimensionxx/dimensionxx/canvas.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdimensionxx/dimensionxx/canvas.hpp b/libdimensionxx/dimensionxx/canvas.hpp index f9e77e5..84787ed 100644 --- a/libdimensionxx/dimensionxx/canvas.hpp +++ b/libdimensionxx/dimensionxx/canvas.hpp @@ -42,7 +42,7 @@ namespace Dimension unsigned int width() const; unsigned int height() const; - // Get and set a pixel, thread-safely. + // Get and set a pixel Color pixel(unsigned int x, unsigned int y) const; void pixel(unsigned int x, unsigned int y, const Color& c); |