/cocos2dx/platform/third_party/blackberry/include/grskia/SkMallocPixelRef.h

https://bitbucket.org/Tsiannian/cocos2d-x · C++ Header · 63 lines · 27 code · 11 blank · 25 comment · 0 complexity · b11aa710d99019e60e018a9866134b45 MD5 · raw file

  1. /*
  2. * Copyright (C) 2008 The Android Open Source Project
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #ifndef SkMallocPixelRef_DEFINED
  17. #define SkMallocPixelRef_DEFINED
  18. #include "SkPixelRef.h"
  19. /** We explicitly use the same allocator for our pixels that SkMask does,
  20. so that we can freely assign memory allocated by one class to the other.
  21. */
  22. class SkMallocPixelRef : public SkPixelRef {
  23. public:
  24. /** Allocate the specified buffer for pixels. The memory is freed when the
  25. last owner of this pixelref is gone. If addr is NULL, sk_malloc_throw()
  26. is called to allocate it.
  27. */
  28. SkMallocPixelRef(void* addr, size_t size, SkColorTable* ctable);
  29. virtual ~SkMallocPixelRef();
  30. //! Return the allocation size for the pixels
  31. size_t getSize() const { return fSize; }
  32. void* getAddr() const { return fStorage; }
  33. // overrides from SkPixelRef
  34. virtual void flatten(SkFlattenableWriteBuffer&) const;
  35. virtual Factory getFactory() const {
  36. return Create;
  37. }
  38. static SkPixelRef* Create(SkFlattenableReadBuffer& buffer) {
  39. return SkNEW_ARGS(SkMallocPixelRef, (buffer));
  40. }
  41. protected:
  42. // overrides from SkPixelRef
  43. virtual void* onLockPixels(SkColorTable**);
  44. virtual void onUnlockPixels();
  45. SkMallocPixelRef(SkFlattenableReadBuffer& buffer);
  46. private:
  47. void* fStorage;
  48. size_t fSize;
  49. SkColorTable* fCTable;
  50. typedef SkPixelRef INHERITED;
  51. };
  52. #endif