Make signals arguments clearer

Former-commit-id: c329f1fc5b8d8ffcf8e38ec4e4804454b31f685f
This commit is contained in:
Lynix
2015-09-14 22:40:38 +02:00
parent 9f1c190985
commit 03ee0a12ed
29 changed files with 72 additions and 68 deletions

View File

@@ -108,9 +108,9 @@ class NAZARA_RENDERER_API NzTexture : public NzAbstractImage, public NzRefCounte
static bool IsTypeSupported(nzImageType type);
template<typename... Args> static NzTextureRef New(Args&&... args);
// Signals
NazaraSignal(OnTextureDestroy, const NzTexture*); //< Args: me
NazaraSignal(OnTextureRelease, const NzTexture*); //< Args: me
// Signals:
NazaraSignal(OnTextureDestroy, const NzTexture* /*texture*/);
NazaraSignal(OnTextureRelease, const NzTexture* /*texture*/);
private:
bool CreateTexture(bool proxy);