These will serve as stock transitions and as a reference implementation for hardware accelerated transitions.
13 lines
216 B
C++
13 lines
216 B
C++
#ifndef DIPTOBLACKTRANSITION_H
|
|
#define DIPTOBLACKTRANSITION_H
|
|
|
|
#include "../transition.h"
|
|
|
|
class DipToBlackTransition : public TransitionBlock
|
|
{
|
|
public:
|
|
DipToBlackTransition();
|
|
};
|
|
|
|
#endif // DIPTOBLACKTRANSITION_H
|