Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/gameengine/VideoTexture/FilterSource.h')
-rw-r--r--source/gameengine/VideoTexture/FilterSource.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/gameengine/VideoTexture/FilterSource.h b/source/gameengine/VideoTexture/FilterSource.h
index 0e0a3e8d1b9..cb9e22a133d 100644
--- a/source/gameengine/VideoTexture/FilterSource.h
+++ b/source/gameengine/VideoTexture/FilterSource.h
@@ -142,12 +142,12 @@ public:
protected:
/// filter pixel, source float buffer
virtual unsigned int filter (float * src, short x, short y,
- short * size, unsigned int pixSize, unsigned int val)
+ short * size, unsigned int pixSize, unsigned int val)
{
- // Copy the float value straight away
- // The user can retrieve the original float value by using
- // 'F' mode in BGL buffer
- memcpy(&val, src, sizeof (unsigned int));
+ /* Copy the float value straight away
+ * The user can retrieve the original float value by using
+ * 'F' mode in BGL buffer */
+ memcpy(&val, src, sizeof (unsigned int));
return val;
}
};