|
@@ -57,10 +57,8 @@ class CullTraverser;
|
|
|
class EXPCL_PANDA_DISPLAY DisplayRegion : public TypedReferenceCount, public DrawableRegion {
|
|
class EXPCL_PANDA_DISPLAY DisplayRegion : public TypedReferenceCount, public DrawableRegion {
|
|
|
protected:
|
|
protected:
|
|
|
DisplayRegion(GraphicsOutput *window, const LVecBase4 &dimensions);
|
|
DisplayRegion(GraphicsOutput *window, const LVecBase4 &dimensions);
|
|
|
-
|
|
|
|
|
-private:
|
|
|
|
|
- DisplayRegion(const DisplayRegion ©);
|
|
|
|
|
- void operator = (const DisplayRegion ©);
|
|
|
|
|
|
|
+ DisplayRegion(const DisplayRegion ©) = delete;
|
|
|
|
|
+ void operator = (const DisplayRegion ©) = delete;
|
|
|
|
|
|
|
|
public:
|
|
public:
|
|
|
virtual ~DisplayRegion();
|
|
virtual ~DisplayRegion();
|
|
@@ -310,9 +308,8 @@ private:
|
|
|
class EXPCL_PANDA_DISPLAY DisplayRegionPipelineReader {
|
|
class EXPCL_PANDA_DISPLAY DisplayRegionPipelineReader {
|
|
|
public:
|
|
public:
|
|
|
INLINE DisplayRegionPipelineReader(DisplayRegion *object, Thread *current_thread);
|
|
INLINE DisplayRegionPipelineReader(DisplayRegion *object, Thread *current_thread);
|
|
|
-private:
|
|
|
|
|
- INLINE DisplayRegionPipelineReader(const DisplayRegionPipelineReader ©);
|
|
|
|
|
- INLINE void operator = (const DisplayRegionPipelineReader ©);
|
|
|
|
|
|
|
+ DisplayRegionPipelineReader(const DisplayRegionPipelineReader ©) = delete;
|
|
|
|
|
+ void operator = (const DisplayRegionPipelineReader ©) = delete;
|
|
|
|
|
|
|
|
public:
|
|
public:
|
|
|
INLINE ~DisplayRegionPipelineReader();
|
|
INLINE ~DisplayRegionPipelineReader();
|