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/blender/compositor/intern/COM_Device.h')
-rw-r--r--source/blender/compositor/intern/COM_Device.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/blender/compositor/intern/COM_Device.h b/source/blender/compositor/intern/COM_Device.h
index 202ca1d0b4f..8cb1cbebf7f 100644
--- a/source/blender/compositor/intern/COM_Device.h
+++ b/source/blender/compositor/intern/COM_Device.h
@@ -26,7 +26,7 @@
#include "COM_WorkPackage.h"
/**
- * @brief Abstract class for device implementations to be used by the Compositor.
+ * \brief Abstract class for device implementations to be used by the Compositor.
* devices are queried, initialized and used by the WorkScheduler.
* work are packaged as a WorkPackage instance.
*/
@@ -34,24 +34,24 @@ class Device {
public:
/**
- * @brief Declaration of the virtual destructor
- * @note resolve warning gcc 4.7
+ * \brief Declaration of the virtual destructor
+ * \note resolve warning gcc 4.7
*/
virtual ~Device() {}
/**
- * @brief initialize the device
+ * \brief initialize the device
*/
virtual bool initialize() { return true; }
/**
- * @brief deinitialize the device
+ * \brief deinitialize the device
*/
virtual void deinitialize() {}
/**
- * @brief execute a WorkPackage
- * @param work the WorkPackage to execute
+ * \brief execute a WorkPackage
+ * \param work the WorkPackage to execute
*/
virtual void execute(WorkPackage *work) = 0;