1. 3cb406b Implement support for origin-TopLeft render targets. Note that the default behaviour remains the same: textures default to origin-TopLeft, render targets default to origin-BottomLeft, and backend textures default to origin-BottomLeft. However, the caller can override the default by setting fOrigin in GrTextureDesc, GrBackendTextureDesc or GrBackendRenderTargetDesc. by senorblanco@chromium.org · 12 years ago
  2. cf9faf6 Reverting r7545 (render target origin change) due to layout test issues (see https://codereview.chromium.org/12210002/) by robertphillips@google.com · 12 years ago
  3. ed8659b Implement support for origin-TopLeft render targets in GL backend. by senorblanco@chromium.org · 12 years ago
  4. 22943cd Fix debug build. Unreviewed. by senorblanco@chromium.org · 12 years ago
  5. ef5dbe1 Add an origin flag for backend (external) textures. Some textures in WebKit have a topdown orientation, and skia needs to be notified of this, so that they are not drawn upside-down. by senorblanco@chromium.org · 12 years ago
  6. 7283022 Make GrResource know whether 3D objects' lifetimes are managed by Skia or not. by bsalomon@google.com · 12 years ago
  7. e862d16 Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 13 years ago
  8. 2d0bade Make the orientation of a texture accessible from and known by GrSurface. by bsalomon@google.com · 13 years ago
  9. 08afc84 Files accidentally omitted from r6123. by bsalomon@google.com · 13 years ago
  10. d364554 Enforce calling of inherited onRelease & onAbandon mthds in GrResource-derived classes by robertphillips@google.com · 13 years ago
  11. fbfcd56 Result of running tools/sanitize_source_files.py (which was added in https://codereview.appspot.com/6465078/) by rmistry@google.com · 13 years ago
  12. b867099 Move filter/wrap out of GrSamplerState into GrTextureParams by bsalomon@google.com · 13 years ago
  13. c377baf Add placement new macros to SkPostConfig, call SkNEW* from Ganesh. by tomhudson@google.com · 13 years ago
  14. fa35e3d plumb SkInstCnt to all subclasses of GrRefCnt by reed@google.com · 13 years ago
  15. 3271628 Move texture descriptor into GrTexture by robertphillips@google.com · 13 years ago
  16. d8f856c Move convolution from code in GrGLProgram to new GrConvolutionEffect by tomhudson@google.com · 13 years ago
  17. dd182cb Move GL-specific source code to make room for D3D back end. by tomhudson@google.com · 13 years ago[Renamed from src/gpu/GrGLTexture.cpp]
  18. 280e99f Add support for GL texture storage by bsalomon@google.com · 13 years ago
  19. 6f37951 Make all pixel ops go thru ctx so we can correctly flush. Unify two texture upload code paths. by bsalomon@google.com · 14 years ago
  20. 9962108 Remove allocated size vs content size in textures by bsalomon@google.com · 14 years ago
  21. 1dcf506 Remove GrGpuGLFixed subclass and ES1 support by bsalomon@google.com · 14 years ago
  22. 7107fa7 Add support for GL_EXT_unpack_subimage by bsalomon@google.com · 14 years ago
  23. 80d09b9 Use timestamp to detect when client GL calls could cause Gr's cache of glTexParam values to be invalid. by bsalomon@google.com · 14 years ago
  24. 64c4fe4 More removal of texture fUploadByteCount and rename fFormat to fConfig for consistency. by bsalomon@google.com · 14 years ago
  25. 9d6cfd8 Remove unneeded field from GrGLTexture by bsalomon@google.com · 14 years ago
  26. d38f137 Move gpu/include/* to include/gpu and gpu/src/* to src/gpu by bsalomon@google.com · 14 years ago[Renamed from gpu/src/GrGLTexture.cpp]
  27. 7d4679a Rename existing nonpreserving reallocs to reset, add reset to SkAutoMalloc, use reset in GrBufferAllocPool by bsalomon@google.com · 14 years ago
  28. 0b77d68 Make GrGLInterface a per-GrContext refcounted object rather than a global by bsalomon@google.com · 14 years ago
  29. 0168afc Make RT & TEX base classes aware of NPOT/min-RT bloated size by bsalomon@google.com · 14 years ago
  30. 5bfc217 cleanup GrGLTexture / GrGLRenderTarget cons. Make GrRenderTarget aware of its msaa sample count. by bsalomon@google.com · 14 years ago
  31. aa5b673 move render target decls / defs to their own headers / srcs by bsalomon@google.com · 14 years ago
  32. ec3ed6a Automatic update of all copyright notices to reflect new license terms. by epoger@google.com · 14 years ago
  33. cee661a Reapply r1951. by bsalomon@google.com · 14 years ago
  34. ec36471 Revert "Add sizeInBytes to GrResource, make GrRenderTarget aware of its pixel config (r1951)" by vandebo@chromium.org · 14 years ago
  35. aab1fd9 Add sizeInBytes to GrResource, make GrRenderTarget aware of its pixel config by bsalomon@google.com · 14 years ago
  36. d9f826c flip Y in uploads to bottom-up textures (and add gm test) by bsalomon@google.com · 14 years ago
  37. 3582bf9 Remove GrAuto*Malloc, replace with SkAuto*Malloc by bsalomon@google.com · 14 years ago
  38. 4ee7ae5 Adding the notion of a volatile bitmap to SkBitmap. by junov@google.com · 14 years ago
  39. c29d7cd Always call notifyTextureDelete in onRelease. by Scroggo · 14 years ago
  40. 79d2dbe uint32_t -> int for texture extents by bsalomon@google.com · 14 years ago
  41. 8295dc1 4x4 SSAA with improvements in determination of when to apply. Still disabled at compile time. by bsalomon@google.com · 14 years ago
  42. 5877ffd Add APIs and plumbing for external rendertaret-textures w/ and w/out MSAA. by bsalomon@google.com · 14 years ago
  43. f954d8d Add isMultisampled() to GrRenderTarget. Cleanup MSAA vs smooth lines logic in GrGpuGL. by bsalomon@google.com · 14 years ago
  44. 6dcf499 Fix dangling ptr when GrRenderTarget outlives its GrTexture representation by bsalomon@google.com · 14 years ago
  45. 8fe7247 Add GrResource base class for ibs, texs, vbs, etc. by bsalomon@google.com · 14 years ago
  46. c312bf9 Remove old GR_* macros for GL extensions in favor of GrGLDefines.h by bsalomon@google.com · 14 years ago
  47. b65e0cb by twiz@google.com · 14 years ago
  48. 0f31ca7 by twiz@google.com · 14 years ago
  49. 59a190b by twiz@google.com · 14 years ago
  50. 1da0746 Delete GL tex ID when last of GrGLTexture or GrGLRenderTarget that reference it is destroyed by bsalomon@google.com · 14 years ago
  51. d302f14 Add support for clipstack to Gr. GrClip is now a list of rects and paths with set operations to combine them. The stencil buffer is used to perform the set operations to put the clip into the stencil buffer. Building Gr's clip from Skia's clipStack is currently disabled due to the fact that Skia's clipStack is relative to the root layer not the current layer. This will be fixed in a subsequent CL. by bsalomon@google.com · 14 years ago
  52. 8895a7a Reduce glGets for stencil bits. by bsalomon@google.com · 14 years ago
  53. c6cf723 Hide alloc size vs content size below API by bsalomon@google.com · 14 years ago
  54. 8531c1c Towards issue #106 by bsalomon@google.com · 14 years ago
  55. da96ea0 Stop using GrSamplerState to track the texture parameters for GL textures. It has become larger and now holds state that isn't tracked per-texture by GL. Also remove unused setSamplerStateImm from GrGpuGL by bsalomon@google.com · 15 years ago
  56. ac10a2d add gpu backend (not hooked up yet) by reed@google.com · 15 years ago