Cleanup: remove author/date info from doxy headers

This commit is contained in:
Campbell Barton 2019-02-02 11:53:07 +11:00
parent a3bf8da875
commit 4ef09cf937
320 changed files with 2 additions and 638 deletions

@ -48,9 +48,8 @@
* \file atomic_ops.h * \file atomic_ops.h
* \ingroup Atomic * \ingroup Atomic
* *
* \author Copyright (C) 2016 Blender Foundation, adapted from jemalloc. * \brief Provides wrapper around system-specific atomic primitives,
* \brief Provides wrapper around system-specific atomic primitives, and some extensions (faked-atomic operations * and some extensions (faked-atomic operations over float numbers).
* over float numbers).
*/ */
#ifndef __ATOMIC_OPS_H__ #ifndef __ATOMIC_OPS_H__

@ -35,9 +35,6 @@
* You can create a offscreen context (windowless) with the system's * You can create a offscreen context (windowless) with the system's
* GHOST_ISystem::createOffscreenContext method. * GHOST_ISystem::createOffscreenContext method.
* \see GHOST_ISystem#createOffscreenContext * \see GHOST_ISystem#createOffscreenContext
*
* \author Clément Foucault
* \date Feb 9, 2018
*/ */
class GHOST_IContext class GHOST_IContext
{ {

@ -39,8 +39,6 @@ class GHOST_IWindow;
* event data to the correct event dat structure. * event data to the correct event dat structure.
* \see GHOST_IEventConsumer#processEvent * \see GHOST_IEventConsumer#processEvent
* \see GHOST_TEventType * \see GHOST_TEventType
* \author Maarten Gribnau
* \date May 31, 2001
*/ */
class GHOST_IEvent class GHOST_IEvent
{ {

@ -34,8 +34,6 @@
* they want to receive events. The system will call the processEvent() method * they want to receive events. The system will call the processEvent() method
* for every installed event consumer to pass events. * for every installed event consumer to pass events.
* \see GHOST_ISystem#addEventConsumer * \see GHOST_ISystem#addEventConsumer
* \author Maarten Gribnau
* \date May 14, 2001
*/ */
class GHOST_IEventConsumer class GHOST_IEventConsumer
{ {

@ -127,8 +127,6 @@ class GHOST_IEventConsumer;
* -# Access to the state of the mouse buttons and the keyboard. * -# Access to the state of the mouse buttons and the keyboard.
* -# Menus for windows with events generated when they are accessed (this is * -# Menus for windows with events generated when they are accessed (this is
* work in progress). * work in progress).
* \author Maarten Gribnau
* \date May 30, 2001
*/ */
class GHOST_ISystem class GHOST_ISystem
{ {

@ -39,8 +39,6 @@
* process messages in order for the timer-callbacks to be called. * process messages in order for the timer-callbacks to be called.
* \see GHOST_ISystem#installTimer * \see GHOST_ISystem#installTimer
* \see GHOST_TimerProcPtr * \see GHOST_TimerProcPtr
* \author Maarten Gribnau
* \date May 31, 2001
*/ */
class GHOST_ITimerTask class GHOST_ITimerTask
{ {

@ -43,9 +43,6 @@
* upper left corner of the screen.</li> * upper left corner of the screen.</li>
* - The client rectangle coordinate system. The client rectangle of a window * - The client rectangle coordinate system. The client rectangle of a window
* is the area that is drawable by the application (excluding title bars etc.). * is the area that is drawable by the application (excluding title bars etc.).
*
* \author Maarten Gribnau
* \date May 31, 2001
*/ */
class GHOST_IWindow class GHOST_IWindow
{ {

@ -33,8 +33,6 @@
* The four extreme coordinates are stored as left, top, right and bottom. * The four extreme coordinates are stored as left, top, right and bottom.
* To be valid, a rectangle should have a left coordinate smaller than or equal to right. * To be valid, a rectangle should have a left coordinate smaller than or equal to right.
* To be valid, a rectangle should have a top coordinate smaller than or equal to bottom. * To be valid, a rectangle should have a top coordinate smaller than or equal to bottom.
* \author Maarten Gribnau
* \date May 10, 2001
*/ */
class GHOST_Rect { class GHOST_Rect {

@ -31,8 +31,6 @@
/** /**
* This struct stores the state of the mouse buttons. * This struct stores the state of the mouse buttons.
* Buttons can be set using button masks. * Buttons can be set using button masks.
* \author Maarten Gribnau
* \date May 15, 2001
*/ */
struct GHOST_Buttons { struct GHOST_Buttons {
/** /**

@ -24,8 +24,6 @@
/** /**
* Copyright (C) 2001 NaN Technologies B.V. * Copyright (C) 2001 NaN Technologies B.V.
* \author Maarten Gribnau
* \date October 25, 2001
*/ */
#include "GHOST_Debug.h" #include "GHOST_Debug.h"

@ -31,8 +31,6 @@
/** /**
* Event consumer that will forward events to a call-back routine. * Event consumer that will forward events to a call-back routine.
* Especially useful for the C-API. * Especially useful for the C-API.
* \author Maarten Gribnau
* \date October 25, 2001
*/ */
class GHOST_CallbackEventConsumer : public GHOST_IEventConsumer class GHOST_CallbackEventConsumer : public GHOST_IEventConsumer
{ {

@ -24,8 +24,6 @@
/** /**
* Copyright (C) 2001 NaN Technologies B.V. * Copyright (C) 2001 NaN Technologies B.V.
* \author Maarten Gribnau
* \date September 21, 2001
*/ */
#include "GHOST_DisplayManager.h" #include "GHOST_DisplayManager.h"

@ -31,8 +31,6 @@
/** /**
* Manages system displays (platform independent implementation). * Manages system displays (platform independent implementation).
* \author Maarten Gribnau
* \date September 21, 2001
*/ */
class GHOST_DisplayManager class GHOST_DisplayManager
{ {

@ -34,8 +34,6 @@
/** /**
* Manages system displays (Mac OSX/Cocoa implementation). * Manages system displays (Mac OSX/Cocoa implementation).
* \see GHOST_DisplayManager * \see GHOST_DisplayManager
* \author Maarten Gribnau
* \date September 21, 2001
*/ */
class GHOST_DisplayManagerCocoa : public GHOST_DisplayManager class GHOST_DisplayManagerCocoa : public GHOST_DisplayManager
{ {

@ -19,8 +19,6 @@
/** \file ghost/intern/GHOST_DisplayManagerWin32.cpp /** \file ghost/intern/GHOST_DisplayManagerWin32.cpp
* \ingroup GHOST * \ingroup GHOST
* \author Maarten Gribnau
* \date September 21, 2001
*/ */
#include "GHOST_DisplayManagerWin32.h" #include "GHOST_DisplayManagerWin32.h"

@ -34,8 +34,6 @@
/** /**
* Manages system displays (WIN32 implementation). * Manages system displays (WIN32 implementation).
* \author Maarten Gribnau
* \date September 21, 2001
*/ */
class GHOST_DisplayManagerWin32 : public GHOST_DisplayManager class GHOST_DisplayManagerWin32 : public GHOST_DisplayManager
{ {

@ -32,8 +32,6 @@ class GHOST_SystemX11;
/** /**
* Manages system displays (X11 implementation). * Manages system displays (X11 implementation).
* \author Laurence Bourn
* \date October 26, 2001
*/ */
class GHOST_DisplayManagerX11 : public GHOST_DisplayManager class GHOST_DisplayManagerX11 : public GHOST_DisplayManager
{ {

@ -30,8 +30,6 @@
/** /**
* Base class for events received the operating system. * Base class for events received the operating system.
* \author Maarten Gribnau
* \date May 11, 2001
*/ */
class GHOST_Event : public GHOST_IEvent class GHOST_Event : public GHOST_IEvent
{ {

@ -29,8 +29,6 @@
/** /**
* Mouse button event. * Mouse button event.
* \author Maarten Gribnau
* \date May 11, 2001
*/ */
class GHOST_EventButton : public GHOST_Event class GHOST_EventButton : public GHOST_Event
{ {

@ -29,8 +29,6 @@
/** /**
* Cursor event. * Cursor event.
* \author Maarten Gribnau
* \date May 11, 2001
*/ */
class GHOST_EventCursor : public GHOST_Event class GHOST_EventCursor : public GHOST_Event
{ {

@ -29,8 +29,6 @@
/** /**
* Key event. * Key event.
* \author Maarten Gribnau
* \date May 11, 2001
*/ */
class GHOST_EventKey : public GHOST_Event class GHOST_EventKey : public GHOST_Event
{ {

@ -24,8 +24,6 @@
/** /**
* Copyright (C) 2001 NaN Technologies B.V. * Copyright (C) 2001 NaN Technologies B.V.
* \author Maarten Gribnau
* \date May 14, 2001
*/ */
#include "GHOST_EventManager.h" #include "GHOST_EventManager.h"

@ -30,8 +30,6 @@
/** /**
* Generic class for events with string data * Generic class for events with string data
* \author Damien Plisson
* \date Feb 1, 2010
*/ */
class GHOST_EventString : public GHOST_Event class GHOST_EventString : public GHOST_Event
{ {

@ -31,8 +31,6 @@
* Mouse wheel event. * Mouse wheel event.
* The displacement of the mouse wheel is counted in ticks. * The displacement of the mouse wheel is counted in ticks.
* A positive value means the wheel is turned away from the user. * A positive value means the wheel is turned away from the user.
* \author Maarten Gribnau
* \date May 11, 2001
*/ */
class GHOST_EventWheel : public GHOST_Event class GHOST_EventWheel : public GHOST_Event
{ {

@ -24,8 +24,6 @@
/** /**
* Copyright (C) 2001 NaN Technologies B.V. * Copyright (C) 2001 NaN Technologies B.V.
* \author Maarten Gribnau
* \date May 7, 2001
*/ */
#include "GHOST_ISystem.h" #include "GHOST_ISystem.h"

@ -24,8 +24,6 @@
/** /**
* Copyright (C) 2001 NaN Technologies B.V. * Copyright (C) 2001 NaN Technologies B.V.
* \author Maarten Gribnau
* \date May 7, 2001
*/ */

@ -24,8 +24,6 @@
/** /**
* Copyright (C) 2001 NaN Technologies B.V. * Copyright (C) 2001 NaN Technologies B.V.
* \author Maarten Gribnau
* \date May 31, 2001
*/ */
#include "GHOST_ModifierKeys.h" #include "GHOST_ModifierKeys.h"

@ -30,8 +30,6 @@
/** /**
* Stores the state of modifier keys. * Stores the state of modifier keys.
* Discriminates between left and right modifier keys. * Discriminates between left and right modifier keys.
* \author Maarten Gribnau
* \date May 17, 2001
*/ */
struct GHOST_ModifierKeys { struct GHOST_ModifierKeys {
/** /**

@ -19,8 +19,6 @@
/** \file ghost/intern/GHOST_System.cpp /** \file ghost/intern/GHOST_System.cpp
* \ingroup GHOST * \ingroup GHOST
* \author Maarten Gribnau
* \date May 7, 2001
*/ */
#include "GHOST_System.h" #include "GHOST_System.h"

@ -50,8 +50,6 @@ class GHOST_NDOFManager;
* GHOST_System is an abstract class because not all methods of GHOST_ISystem * GHOST_System is an abstract class because not all methods of GHOST_ISystem
* are implemented. * are implemented.
* \see GHOST_ISystem. * \see GHOST_ISystem.
* \author Maarten Gribnau
* \date May 7, 2001
*/ */
class GHOST_System : public GHOST_ISystem class GHOST_System : public GHOST_ISystem
{ {

@ -40,8 +40,6 @@
/** /**
* WIN32 Implementation of GHOST_SystemPaths class. * WIN32 Implementation of GHOST_SystemPaths class.
* \see GHOST_SystemPaths. * \see GHOST_SystemPaths.
* \author Andrea Weikert
* \date August 1, 2010
*/ */
class GHOST_SystemPathsWin32 : public GHOST_SystemPaths { class GHOST_SystemPathsWin32 : public GHOST_SystemPaths {
public: public:

@ -19,8 +19,6 @@
/** \file ghost/intern/GHOST_SystemWin32.cpp /** \file ghost/intern/GHOST_SystemWin32.cpp
* \ingroup GHOST * \ingroup GHOST
*
* \author Maarten Gribnau
*/ */

@ -51,8 +51,6 @@ class GHOST_WindowWin32;
/** /**
* WIN32 Implementation of GHOST_System class. * WIN32 Implementation of GHOST_System class.
* \see GHOST_System. * \see GHOST_System.
* \author Maarten Gribnau
* \date May 10, 2001
*/ */
class GHOST_SystemWin32 : public GHOST_System { class GHOST_SystemWin32 : public GHOST_System {
public: public:

@ -71,8 +71,6 @@ class GHOST_WindowX11;
/** /**
* X11 Implementation of GHOST_System class. * X11 Implementation of GHOST_System class.
* \see GHOST_System. * \see GHOST_System.
* \author Laurence Bourn
* \date October 26, 2001
*/ */
class GHOST_SystemX11 : public GHOST_System { class GHOST_SystemX11 : public GHOST_System {

@ -24,8 +24,6 @@
/** /**
* Copyright (C) 2001 NaN Technologies B.V. * Copyright (C) 2001 NaN Technologies B.V.
* \author Maarten Gribnau
* \date May 31, 2001
*/ */
#include "GHOST_TimerManager.h" #include "GHOST_TimerManager.h"

@ -36,8 +36,6 @@ class GHOST_TimerTask;
* Manages a list of timer tasks. * Manages a list of timer tasks.
* Timer tasks added are owned by the manager. * Timer tasks added are owned by the manager.
* Don't delete timer task objects. * Don't delete timer task objects.
* \author Maarten Gribnau
* \date May 31, 2001
*/ */
class GHOST_TimerManager class GHOST_TimerManager
{ {

@ -30,8 +30,6 @@
/** /**
* Implementation of a timer task. * Implementation of a timer task.
* \author Maarten Gribnau
* \date May 28, 2001
*/ */
class GHOST_TimerTask : public GHOST_ITimerTask class GHOST_TimerTask : public GHOST_ITimerTask
{ {

@ -24,8 +24,6 @@
/** /**
* Copyright (C) 2001 NaN Technologies B.V. * Copyright (C) 2001 NaN Technologies B.V.
* \author Maarten Gribnau
* \date May 10, 2001
*/ */
#include "GHOST_Window.h" #include "GHOST_Window.h"

@ -36,8 +36,6 @@ class GHOST_Context;
* upper-left corner of the screen. * upper-left corner of the screen.
* Implements part of the GHOST_IWindow interface and adds some methods to * Implements part of the GHOST_IWindow interface and adds some methods to
* be implemented by childs of this class. * be implemented by childs of this class.
* \author Maarten Gribnau
* \date May 7, 2001
*/ */
class GHOST_Window : public GHOST_IWindow class GHOST_Window : public GHOST_IWindow
{ {

@ -24,8 +24,6 @@
/** /**
* Copyright (C) 2001 NaN Technologies B.V. * Copyright (C) 2001 NaN Technologies B.V.
* \author Maarten Gribnau
* \date May 11, 2001
*/ */
#include "GHOST_WindowManager.h" #include "GHOST_WindowManager.h"

@ -33,8 +33,6 @@
/** /**
* Manages system windows (platform independent implementation). * Manages system windows (platform independent implementation).
* \author Maarten Gribnau
* \date May 11, 2001
*/ */
class GHOST_WindowManager class GHOST_WindowManager
{ {

@ -135,8 +135,6 @@ typedef BOOL (API * GHOST_WIN32_GetPointerPenInfo)(UINT32 pointerId, POINTER_PEN
/** /**
* GHOST window on M$ Windows OSs. * GHOST window on M$ Windows OSs.
* \author Maarten Gribnau
* \date May 10, 2001
*/ */
class GHOST_WindowWin32 : public GHOST_Window { class GHOST_WindowWin32 : public GHOST_Window {
public: public:

@ -47,8 +47,6 @@ class GHOST_DropTargetX11;
/** /**
* X11 implementation of GHOST_IWindow. * X11 implementation of GHOST_IWindow.
* Dimensions are given in screen coordinates that are relative to the upper-left corner of the screen. * Dimensions are given in screen coordinates that are relative to the upper-left corner of the screen.
* \author Laurence Bourn
* \date October 26, 2001
*/ */
class GHOST_WindowX11 : public GHOST_Window class GHOST_WindowX11 : public GHOST_Window

@ -24,8 +24,6 @@
* Simple test file for the GHOST library. * Simple test file for the GHOST library.
* The OpenGL gear code is taken from the Qt sample code which, * The OpenGL gear code is taken from the Qt sample code which,
* in turn, is probably taken from somewhere as well. * in turn, is probably taken from somewhere as well.
* \author Maarten Gribnau
* \date May 31, 2001
*/ */
#include <stdlib.h> #include <stdlib.h>

@ -22,8 +22,6 @@
* Simple test file for the GHOST library. * Simple test file for the GHOST library.
* The OpenGL gear code is taken from the Qt sample code which, * The OpenGL gear code is taken from the Qt sample code which,
* in turn, is probably taken from somewhere as well. * in turn, is probably taken from somewhere as well.
* \author Maarten Gribnau
* \date May 31, 2001
* Stereo code by Raymond de Vries, januari 2002 * Stereo code by Raymond de Vries, januari 2002
*/ */

@ -21,7 +21,6 @@
* \file MEM_guardedalloc.h * \file MEM_guardedalloc.h
* \ingroup MEM * \ingroup MEM
* *
* \author Copyright (C) 2001 NaN Technologies B.V.
* \brief Read \ref MEMPage * \brief Read \ref MEMPage
* *
* \page MEMPage Guarded memory(de)allocation * \page MEMPage Guarded memory(de)allocation

@ -19,7 +19,6 @@
/** \file mmap_win.h /** \file mmap_win.h
* \ingroup MEM * \ingroup MEM
* \author Andrea Weikert
*/ */
#ifndef __MMAP_WIN_H__ #ifndef __MMAP_WIN_H__

@ -27,7 +27,6 @@
* Copyright (C) 2001 NaN Technologies B.V. * Copyright (C) 2001 NaN Technologies B.V.
* *
* \author Laurence, Brecht
* \page IK - Blender inverse kinematics module. * \page IK - Blender inverse kinematics module.
* *
* \section about About the IK module * \section about About the IK module

@ -2,7 +2,6 @@
* \ingroup itasc * \ingroup itasc
*/ */
/***************************************************************************** /*****************************************************************************
* \author
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven * Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
* *
* \version * \version

@ -12,7 +12,6 @@
* *
* It also contains the 2nd derivative <-> RFrames.h * It also contains the 2nd derivative <-> RFrames.h
* *
* \author
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven * Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
* *
* \version * \version

@ -2,7 +2,6 @@
* \file * \file
* provides inline functions of rrframes.h * provides inline functions of rrframes.h
* *
* \author
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven * Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
* *
* \version * \version

@ -109,7 +109,6 @@
* Sometimes the amount of work is given in the documentation * Sometimes the amount of work is given in the documentation
* e.g. 6M+3A means 6 multiplications and 3 additions. * e.g. 6M+3A means 6 multiplications and 3 additions.
* *
* \author
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven * Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
* *
****************************************************************************/ ****************************************************************************/

@ -2,7 +2,6 @@
* \ingroup itasc * \ingroup itasc
*/ */
/***************************************************************************** /*****************************************************************************
* \author
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven * Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
* *
* \version * \version

@ -6,7 +6,6 @@
* this classes are usefull for automatic differentiation ( <-> symbolic diff , <-> numeric diff) * this classes are usefull for automatic differentiation ( <-> symbolic diff , <-> numeric diff)
* Defines VectorVel, RotationVel, FrameVel. Look at Frames.h for details on how to work * Defines VectorVel, RotationVel, FrameVel. Look at Frames.h for details on how to work
* with Frame objects. * with Frame objects.
* \author
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven * Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
* *
* \version * \version

@ -2,7 +2,6 @@
* \file * \file
* provides inline functions of rframes.h * provides inline functions of rframes.h
* *
* \author
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven * Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
* *
* \version * \version

@ -29,7 +29,6 @@
/***************************************************************************** /*****************************************************************************
* \file * \file
* Defines the exception classes that can be thrown * Defines the exception classes that can be thrown
* \author
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven * Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
* *
* \version * \version

@ -2,7 +2,6 @@
* \ingroup itasc * \ingroup itasc
*/ */
/***************************************************************************** /*****************************************************************************
* \author
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven * Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
* *
* \version * \version

@ -28,7 +28,6 @@
/** /**
* \file * \file
* \author Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
* \version * \version
* ORO_Geometry V0.2 * ORO_Geometry V0.2
* *

@ -4,7 +4,6 @@
* class for automatic differentiation on scalar values and 1st * class for automatic differentiation on scalar values and 1st
* derivatives . * derivatives .
* *
* \author
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven * Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
* *
* \version * \version

@ -4,7 +4,6 @@
* class for automatic differentiation on scalar values and 1st * class for automatic differentiation on scalar values and 1st
* derivatives and 2nd derivative. * derivatives and 2nd derivative.
* *
* \author
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven * Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
* *
* \version * \version

@ -1,5 +1,4 @@
/***************************************************************************** /*****************************************************************************
* \author
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven * Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
* *
* \version * \version

@ -2,7 +2,6 @@
* \ingroup itasc * \ingroup itasc
*/ */
/***************************************************************************** /*****************************************************************************
* \author
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven * Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
* *
* \version * \version

@ -1,5 +1,4 @@
/***************************************************************************** /*****************************************************************************
* \author
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven * Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
* *
* \version * \version

@ -22,10 +22,6 @@
/** \file BKE_action.h /** \file BKE_action.h
* \ingroup bke * \ingroup bke
* \brief Blender kernel action and pose functionality. * \brief Blender kernel action and pose functionality.
* \author Reevan McKay
* \author Ton Roosendaal (full recode 2005)
* \author Joshua Leung (full recode 2009)
* \since may 2001
*/ */
#include "DNA_listBase.h" #include "DNA_listBase.h"

@ -21,8 +21,6 @@
/** \file BKE_anim.h /** \file BKE_anim.h
* \ingroup bke * \ingroup bke
* \author nzc
* \since March 2001
*/ */
struct Depsgraph; struct Depsgraph;
struct ListBase; struct ListBase;

@ -22,7 +22,6 @@
/** \file BKE_animsys.h /** \file BKE_animsys.h
* \ingroup bke * \ingroup bke
* \author Joshua Leung
*/ */
struct AnimData; struct AnimData;

@ -21,8 +21,6 @@
/** \file BKE_armature.h /** \file BKE_armature.h
* \ingroup bke * \ingroup bke
* \since March 2001
* \author nzc
*/ */
struct Bone; struct Bone;

@ -21,8 +21,6 @@
/** \file BKE_blender.h /** \file BKE_blender.h
* \ingroup bke * \ingroup bke
* \since March 2001
* \author nzc
* \brief Blender util stuff * \brief Blender util stuff
*/ */

@ -22,8 +22,6 @@
/** \file BKE_boids.h /** \file BKE_boids.h
* \ingroup bke * \ingroup bke
* \since 2009
* \author Janne Karhu
*/ */
#include "DNA_boid_types.h" #include "DNA_boid_types.h"

@ -21,7 +21,6 @@
/** \file BKE_cloth.h /** \file BKE_cloth.h
* \ingroup bke * \ingroup bke
* \author Daniel Genrich
*/ */
#include <float.h> #include <float.h>

@ -21,7 +21,6 @@
/** \file BKE_collision.h /** \file BKE_collision.h
* \ingroup bke * \ingroup bke
* \author Daniel Genrich
*/ */
#include <math.h> #include <math.h>

@ -22,7 +22,6 @@
/** \file BKE_constraint.h /** \file BKE_constraint.h
* \ingroup bke * \ingroup bke
* \author Joshua Leung (major recode 2007)
*/ */
struct Depsgraph; struct Depsgraph;

@ -21,8 +21,6 @@
/** \file BKE_curve.h /** \file BKE_curve.h
* \ingroup bke * \ingroup bke
* \since March 2001
* \author nzc
*/ */
struct BezTriple; struct BezTriple;

@ -19,7 +19,6 @@
/** \file BKE_customdata.h /** \file BKE_customdata.h
* \ingroup bke * \ingroup bke
* \author Ben Batt
* \brief CustomData interface, see also DNA_customdata_types.h. * \brief CustomData interface, see also DNA_customdata_types.h.
*/ */

@ -22,8 +22,6 @@
/** \file BKE_deform.h /** \file BKE_deform.h
* \ingroup bke * \ingroup bke
* \since June 2001
* \author Reevan McKay et al
* \brief support for deformation groups and hooks. * \brief support for deformation groups and hooks.
*/ */

@ -21,8 +21,6 @@
/** \file BKE_effect.h /** \file BKE_effect.h
* \ingroup bke * \ingroup bke
* \since March 2001
* \author nzc
*/ */
#include "DNA_modifier_types.h" #include "DNA_modifier_types.h"

@ -22,8 +22,6 @@
/** \file BKE_fcurve.h /** \file BKE_fcurve.h
* \ingroup bke * \ingroup bke
* \author Joshua Leung
* \since 2009
*/ */
#ifdef __cplusplus #ifdef __cplusplus

@ -21,8 +21,6 @@
/** \file BKE_global.h /** \file BKE_global.h
* \ingroup bke * \ingroup bke
* \since March 2001
* \author nzc
* \section aboutglobal Global settings * \section aboutglobal Global settings
* Global settings, handles, pointers. This is the root for finding * Global settings, handles, pointers. This is the root for finding
* any data in Blender. This block is not serialized, but built anew * any data in Blender. This block is not serialized, but built anew

@ -22,7 +22,6 @@
/** \file BKE_gpencil.h /** \file BKE_gpencil.h
* \ingroup bke * \ingroup bke
* \author Joshua Leung
*/ */
struct ArrayGpencilModifierData; struct ArrayGpencilModifierData;

@ -19,7 +19,6 @@
/** \file BKE_idprop.h /** \file BKE_idprop.h
* \ingroup bke * \ingroup bke
* \author Joseph Eagar
*/ */
#include "DNA_ID.h" #include "DNA_ID.h"

@ -21,8 +21,6 @@
/** \file BKE_image.h /** \file BKE_image.h
* \ingroup bke * \ingroup bke
* \since March 2001
* \author nzc
*/ */
#ifdef __cplusplus #ifdef __cplusplus

@ -21,9 +21,6 @@
/** \file BKE_ipo.h /** \file BKE_ipo.h
* \ingroup bke * \ingroup bke
* \since March 2001
* \author nzc
* \author Joshua Leung
*/ */
#ifdef __cplusplus #ifdef __cplusplus

@ -21,8 +21,6 @@
/** \file BKE_key.h /** \file BKE_key.h
* \ingroup bke * \ingroup bke
* \since March 2001
* \author nzc
*/ */
struct Curve; struct Curve;
struct ID; struct ID;

@ -22,8 +22,6 @@
/** \file BKE_lattice.h /** \file BKE_lattice.h
* \ingroup bke * \ingroup bke
* \author Ton Roosendaal
* \since June 2001
*/ */
#include "BLI_compiler_attrs.h" #include "BLI_compiler_attrs.h"

@ -21,8 +21,6 @@
/** \file BKE_library.h /** \file BKE_library.h
* \ingroup bke * \ingroup bke
* \since March 2001
* \author nzc
*/ */
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {

@ -22,8 +22,6 @@
/** \file BKE_library_override.h /** \file BKE_library_override.h
* \ingroup bke * \ingroup bke
* \since December 2016
* \author mont29
*/ */
struct ID; struct ID;

@ -21,8 +21,6 @@
/** \file BKE_library_query.h /** \file BKE_library_query.h
* \ingroup bke * \ingroup bke
* \since March 2014
* \author sergey
*/ */
struct ID; struct ID;

@ -21,8 +21,6 @@
/** \file BKE_main.h /** \file BKE_main.h
* \ingroup bke * \ingroup bke
* \since March 2001
* \author nzc
* \section aboutmain Main struct * \section aboutmain Main struct
* Main is the root of the 'database' of a Blender context. All data * Main is the root of the 'database' of a Blender context. All data
* is stuffed into lists, and all these lists are knotted to here. A * is stuffed into lists, and all these lists are knotted to here. A

@ -21,8 +21,6 @@
/** \file BKE_mball.h /** \file BKE_mball.h
* \ingroup bke * \ingroup bke
* \since March 2001
* \author nzc
*/ */
struct BoundBox; struct BoundBox;
struct Depsgraph; struct Depsgraph;

@ -22,7 +22,6 @@
/** \file BKE_movieclip.h /** \file BKE_movieclip.h
* \ingroup bke * \ingroup bke
* \author Sergey Sharybin
*/ */
struct Depsgraph; struct Depsgraph;

@ -22,7 +22,6 @@
/** \file BKE_nla.h /** \file BKE_nla.h
* \ingroup bke * \ingroup bke
* \author Joshua Leung (full recode)
*/ */
struct AnimData; struct AnimData;

@ -21,8 +21,6 @@
/** \file BKE_packedFile.h /** \file BKE_packedFile.h
* \ingroup bke * \ingroup bke
* \since March 2001
* \author nzc
*/ */
#define RET_OK 0 #define RET_OK 0
#define RET_ERROR 1 #define RET_ERROR 1

@ -21,8 +21,6 @@
/** \file BKE_scene.h /** \file BKE_scene.h
* \ingroup bke * \ingroup bke
* \since March 2001
* \author nzc
*/ */
#ifdef __cplusplus #ifdef __cplusplus

@ -21,8 +21,6 @@
/** \file BKE_screen.h /** \file BKE_screen.h
* \ingroup bke * \ingroup bke
* \since March 2001
* \author nzc
*/ */
struct ARegion; struct ARegion;

@ -22,7 +22,6 @@
/** \file BKE_smoke.h /** \file BKE_smoke.h
* \ingroup bke * \ingroup bke
* \author Daniel Genrich
*/ */
typedef float (*bresenham_callback)(float *result, float *input, int res[3], int *pixel, float *tRay, float correct); typedef float (*bresenham_callback)(float *result, float *input, int res[3], int *pixel, float *tRay, float correct);

@ -21,8 +21,6 @@
/** \file BKE_sound.h /** \file BKE_sound.h
* \ingroup bke * \ingroup bke
* \since March 2001
* \author nzc
*/ */
#define SOUND_WAVE_SAMPLES_PER_SECOND 250 #define SOUND_WAVE_SAMPLES_PER_SECOND 250

@ -19,8 +19,6 @@
/** \file BKE_subdiv.h /** \file BKE_subdiv.h
* \ingroup bke * \ingroup bke
* \since July 2018
* \author Sergey Sharybin
*/ */
#ifndef __BKE_SUBDIV_H__ #ifndef __BKE_SUBDIV_H__

@ -19,8 +19,6 @@
/** \file BKE_subdiv_ccg.h /** \file BKE_subdiv_ccg.h
* \ingroup bke * \ingroup bke
* \since July 2018
* \author Sergey Sharybin
*/ */
#ifndef __BKE_SUBDIV_CCG_H__ #ifndef __BKE_SUBDIV_CCG_H__

@ -19,8 +19,6 @@
/** \file BKE_subdiv_eval.h /** \file BKE_subdiv_eval.h
* \ingroup bke * \ingroup bke
* \since September 2018
* \author Sergey Sharybin
*/ */
#ifndef __BKE_SUBDIV_EVAL_H__ #ifndef __BKE_SUBDIV_EVAL_H__

@ -19,8 +19,6 @@
/** \file BKE_subdiv_foreach.h /** \file BKE_subdiv_foreach.h
* \ingroup bke * \ingroup bke
* \since September 2018
* \author Sergey Sharybin
*/ */
#ifndef __BKE_SUBDIV_FOREACH_H__ #ifndef __BKE_SUBDIV_FOREACH_H__

Some files were not shown because too many files have changed in this diff Show More