Update copy/move constructors/operators
Former-commit-id: b1faeeae9211a6c0ca29261d46929dc8c66ea0c4
This commit is contained in:
@@ -27,7 +27,7 @@ class NAZARA_RENDERER_API NzRenderTexture : public NzRenderTarget
|
||||
public:
|
||||
inline NzRenderTexture();
|
||||
NzRenderTexture(const NzRenderTexture&) = delete;
|
||||
NzRenderTexture(NzRenderTexture&&) = delete; ///TODO
|
||||
NzRenderTexture(NzRenderTexture&&) = delete; ///TODO?
|
||||
inline ~NzRenderTexture();
|
||||
|
||||
bool AttachBuffer(nzAttachmentPoint attachmentPoint, nzUInt8 index, NzRenderBuffer* buffer);
|
||||
@@ -61,7 +61,7 @@ class NAZARA_RENDERER_API NzRenderTexture : public NzRenderTarget
|
||||
bool HasContext() const override;
|
||||
|
||||
NzRenderTexture& operator=(const NzRenderTexture&) = delete;
|
||||
NzRenderTexture& operator=(NzRenderTexture&&) = delete; ///TODO
|
||||
NzRenderTexture& operator=(NzRenderTexture&&) = delete; ///TODO?
|
||||
|
||||
static inline void Blit(NzRenderTexture* src, NzRenderTexture* dst, nzUInt32 buffers = nzRendererBuffer_Color | nzRendererBuffer_Depth | nzRendererBuffer_Stencil, bool bilinearFilter = false);
|
||||
static void Blit(NzRenderTexture* src, NzRectui srcRect, NzRenderTexture* dst, NzRectui dstRect, nzUInt32 buffers = nzRendererBuffer_Color | nzRendererBuffer_Depth | nzRendererBuffer_Stencil, bool bilinearFilter = false);
|
||||
|
||||
Reference in New Issue
Block a user