2013-10-24 17:44:27 +00:00
|
|
|
#include "Test.h"
|
|
|
|
|
|
|
|
#include "SkMallocPixelRef.h"
|
2014-01-24 20:56:26 +00:00
|
|
|
#include "SkPixelRef.h"
|
2013-10-24 17:44:27 +00:00
|
|
|
|
|
|
|
class TestListener : public SkPixelRef::GenIDChangeListener {
|
|
|
|
public:
|
|
|
|
explicit TestListener(int* ptr) : fPtr(ptr) {}
|
2014-01-21 23:39:22 +00:00
|
|
|
virtual void onChange() SK_OVERRIDE { (*fPtr)++; }
|
2013-10-24 17:44:27 +00:00
|
|
|
private:
|
|
|
|
int* fPtr;
|
|
|
|
};
|
|
|
|
|
|
|
|
DEF_TEST(PixelRef_GenIDChange, r) {
|
2014-01-15 02:38:22 +00:00
|
|
|
SkImageInfo info = SkImageInfo::MakeN32Premul(10, 10);
|
2013-12-13 19:45:58 +00:00
|
|
|
|
|
|
|
SkAutoTUnref<SkPixelRef> pixelRef(SkMallocPixelRef::NewAllocate(info, 0, NULL));
|
2013-10-24 17:44:27 +00:00
|
|
|
|
|
|
|
// Register a listener.
|
|
|
|
int count = 0;
|
2013-12-13 19:45:58 +00:00
|
|
|
pixelRef->addGenIDChangeListener(SkNEW_ARGS(TestListener, (&count)));
|
2013-10-24 17:44:27 +00:00
|
|
|
REPORTER_ASSERT(r, 0 == count);
|
|
|
|
|
|
|
|
// No one has looked at our pixelRef's generation ID, so invalidating it doesn't make sense.
|
|
|
|
// (An SkPixelRef tree falls in the forest but there's nobody around to hear it. Do we care?)
|
2013-12-13 19:45:58 +00:00
|
|
|
pixelRef->notifyPixelsChanged();
|
2013-10-24 17:44:27 +00:00
|
|
|
REPORTER_ASSERT(r, 0 == count);
|
|
|
|
|
|
|
|
// Force the generation ID to be calculated.
|
2013-12-13 19:45:58 +00:00
|
|
|
REPORTER_ASSERT(r, 0 != pixelRef->getGenerationID());
|
2013-10-24 17:44:27 +00:00
|
|
|
|
|
|
|
// Our listener was dropped in the first call to notifyPixelsChanged(). This is a no-op.
|
2013-12-13 19:45:58 +00:00
|
|
|
pixelRef->notifyPixelsChanged();
|
2013-10-24 17:44:27 +00:00
|
|
|
REPORTER_ASSERT(r, 0 == count);
|
|
|
|
|
|
|
|
// Force the generation ID to be recalculated, then add a listener.
|
2013-12-13 19:45:58 +00:00
|
|
|
REPORTER_ASSERT(r, 0 != pixelRef->getGenerationID());
|
|
|
|
pixelRef->addGenIDChangeListener(SkNEW_ARGS(TestListener, (&count)));
|
|
|
|
pixelRef->notifyPixelsChanged();
|
2013-10-24 17:44:27 +00:00
|
|
|
REPORTER_ASSERT(r, 1 == count);
|
|
|
|
|
|
|
|
// Quick check that NULL is safe.
|
2013-12-13 19:45:58 +00:00
|
|
|
REPORTER_ASSERT(r, 0 != pixelRef->getGenerationID());
|
|
|
|
pixelRef->addGenIDChangeListener(NULL);
|
|
|
|
pixelRef->notifyPixelsChanged();
|
2013-10-24 17:44:27 +00:00
|
|
|
}
|