1. 2279325 added support for PLS path rendering by ethannicholas · 9 years ago
  2. 5366a09 Revert of added support for PLS path rendering (patchset #16 id:360001 of https://codereview.chromium.org/1541903002/ ) by ethannicholas · 9 years ago
  3. 7df3f5e added support for PLS path rendering by ethannicholas · 9 years ago
  4. fa89632 Move some program building utils from GL to GLSL by egdaniel · 9 years ago
  5. 2047b78 Don't ref/unref the static src-over xp by bsalomon · 9 years ago
  6. 0eafe79 Create GrGLSLVaryingHandler class for program building by egdaniel · 9 years ago
  7. e659a58 Move GrGLPrimitive/GeometryProc to GLSL by egdaniel · 9 years ago
  8. fa4cc8b Move XferProcessors to glsl by egdaniel · 9 years ago
  9. 64c4728 Make all GrFragmentProcessors GL independent. by egdaniel · 9 years ago
  10. 574a4c1 Move shader compiling to ProgramBuilder and various ShaderBuilder cleanups. by egdaniel · 9 years ago
  11. 018fb62 Create GLSL base class for ProgramDataManager by egdaniel · 9 years ago
  12. 0d3f061 Move GrGLShaderVar to GrGLSL by egdaniel · 9 years ago
  13. cdf79db Remove unused member variables in GrGLProgram by egdaniel · 9 years ago
  14. 102081a move GrGLPathProcessor back into GrPathProcessor by joshualitt · 9 years ago
  15. d8dd47b remove path specific program building classes by joshualitt · 9 years ago
  16. 465283c Remove batchtracker by joshualitt · 9 years ago
  17. ac856c9 Remove GrStagedProcessor, remove the word Stage as it applies to FPs by bsalomon · 9 years ago
  18. 4bf69f7b Revert of Remove GrStagedProcessor, remove the word Stage as it applies to FPs (patchset #6 id:90001 of https://codereview.chromium.org/1307223004/ ) by rmistry · 9 years ago
  19. 2424344 Remove GrStagedProcessor, remove the word Stage as it applies to FPs by bsalomon · 9 years ago
  20. b1daa86 When getGLInstance is called on a frag proc, the resulting GrGLFragmentProcessor will be the root of a tree of GrGLFragmentProcessors that mirrors the GrFragmentProcessor's tree. This allows setData() to be called recursively (removing the responsibility from compose shader) and allows gl instances direct access to their children gl instances so they can emit their code. by wangyix · 9 years ago
  21. 7aedda5 Refactor separable varying location info to be stored in GrGLProgram subclass by kkinnunen · 9 years ago
  22. cba99b8 Move GLSL-specific routines/classes to separate glsl directory by jvanverth · 9 years ago
  23. 4271765 Don't call bindTexture from GrGLProgram by cdalton · 9 years ago
  24. cabe20c Refactor GrGpu path rendering functions to GrPathRendering by kkinnunen · 9 years ago
  25. 6a44c6a Move DstCoordTexture to GrXP, rename and remove the word "copy" from dstcopytexture names. by bsalomon · 9 years ago
  26. d23a395 Revert of Move DstCoordTexture to GrXP, rename and remove the word "copy" from dstcopytexture names. (patchset #6 id:100001 of https://codereview.chromium.org/1132093004/) by bungeman · 9 years ago
  27. bb106b5 Move DstCoordTexture to GrXP, rename and remove the word "copy" from dstcopytexture names. by bsalomon · 9 years ago
  28. e578a95 Remove viewmatrix from GrGeometryProcessor base class by joshualitt · 9 years ago
  29. 8072caa A simple change to move a bunch of stuff out of Gr*Geometry.h by joshualitt · 10 years ago
  30. 50785a3 Revert of Revert of Move DstCopy on gpu into the GrXferProcessor. (patchset #1 id:1 of https://codereview.chromium.org/901663007/) by bsalomon · 10 years ago
  31. 21b2c53 Revert of Move DstCopy on gpu into the GrXferProcessor. (patchset #11 id:200001 of https://codereview.chromium.org/885923002/) by bsalomon · 10 years ago
  32. 5e1378d Move DstCopy on gpu into the GrXferProcessor. by egdaniel · 10 years ago
  33. 4dce32c Revert "Move DstCopy on gpu into the GrXferProcessor." by egdaniel · 10 years ago
  34. 7adb355 Revert of Revert "Move DstCopy on gpu into the GrXferProcessor." (patchset #1 id:1 of https://codereview.chromium.org/896163003/) by egdaniel · 10 years ago
  35. 3e9dfdb Revert "Move DstCopy on gpu into the GrXferProcessor." by egdaniel · 10 years ago
  36. 74a1175 Move DstCopy on gpu into the GrXferProcessor. by egdaniel · 10 years ago
  37. 8dd688b Rename GrOptDrawState to GrPipeline and GrDrawState to GrPipelineBuilder by egdaniel · 10 years ago
  38. b77e4b6 remove drawType from optState by joshualitt · 10 years ago
  39. 873ad0e BUG=skia: by joshualitt · 10 years ago
  40. 71c9260 More changes to bring together path / geo procs by joshualitt · 10 years ago
  41. abb52a1 Move most of the transform logic into the primitive processors by joshualitt · 10 years ago
  42. ee2af95 ViewMatrix uniform upload moved to GeometryProcessor by joshualitt · 10 years ago
  43. 40d4bd8 removing coord change matrices by joshualitt · 10 years ago
  44. 39edf76 Rename GrGpuGL -> GrGLGpu by jvanverth · 10 years ago
  45. 290c09b initial changes to add local matrix to primitive processor by joshualitt · 10 years ago
  46. 16b2789 Change to create device coord coordset by joshualitt · 10 years ago
  47. 861e103 Rename GrGpuGL to GrGLGpu for consistency by bsalomon · 10 years ago
  48. 9b98932 This change will ultimately pull uniform color, and to a much lesser degree uniform coverage, into GPs. There are still some loose ends because drawstate has the ability to override the GP, but fixing these cleanly will have to wait until we have deferred geometry in place and can make attribute / uniform decisions on the fly. by joshualitt · 10 years ago
  49. c230414 Create xfer processor backend. by egdaniel · 10 years ago
  50. 2947382 Revert of Create xfer processor backend. (patchset #6 id:100001 of https://codereview.chromium.org/764643004/) by joshualitt · 10 years ago
  51. 4dffc94 Create xfer processor backend. by egdaniel · 10 years ago
  52. 87f48d9 create and thread batch tracker object by joshualitt · 10 years ago
  53. dafa4d0 move program descriptor generation to flush by joshualitt · 10 years ago
  54. f78c60c Revert of move program descriptor generation to flush (patchset #7 id:120001 of https://codereview.chromium.org/777673003/) by joshualitt · 10 years ago
  55. 841a6b5 Revert of create and thread batch tracker object (patchset #9 id:160001 of https://codereview.chromium.org/772513002/) by joshualitt · 10 years ago
  56. c3a6eb2 create and thread batch tracker object by joshualitt · 10 years ago
  57. 829e1b8 move program descriptor generation to flush by joshualitt · 10 years ago
  58. 2dd1ae0 First step to moving vertex attributes to the geometryProcessor by joshualitt · 10 years ago
  59. 9176e2c dstCopy on optdrawstate by joshualitt · 10 years ago
  60. ae59b77 Create GrOptDrawState before recording draw in GrInOrderDrawBuffer by bsalomon · 10 years ago
  61. e27065a Send coverage VA as floats instead of bytes NOTREECHECKS=True by egdaniel · 10 years ago
  62. 37b4d86 Force input coverage to be only a byte in gpu shaders. by egdaniel · 10 years ago
  63. 79f8fae OptState owns program descriptor by joshualitt · 10 years ago
  64. 0e60282 Working patch to remove constant attributes. This may cause some gm mismatches, I will rebaseline tonight. by joshualitt · 10 years ago
  65. 98102a8 Revert of Patch to remove constant attributes (patchset #8 id:120002 of https://codereview.chromium.org/678073005/) by joshualitt · 10 years ago
  66. 95f5194 Working patch to remove constant attributes. This may cause some gm mismatches, I will rebaseline tonight. by joshualitt · 10 years ago
  67. 9f2825f Revert of Patch to remove constant attributes (patchset #6 id:100001 of https://codereview.chromium.org/678073005/) by joshualitt · 10 years ago
  68. 84c94c0 Working patch to remove constant attributes. This may cause some gm mismatches, I will rebaseline tonight. by joshualitt · 10 years ago
  69. a5305a1 Opt state takes a GP instead of a GeometryStage by joshualitt · 10 years ago
  70. 89c7a2e Revert of Opt state takes a GP instead of a GeometryStage (patchset #18 id:1500001 of https://codereview.chromium.org/637003003/) by joshualitt · 10 years ago
  71. 71856d5 Opt state takes a GP instead of a GeometryStage by joshualitt · 10 years ago
  72. 47bb382 Cleanup of shader building system by joshualitt · 10 years ago
  73. db0d3ca Revert of Cleanup of shader building system (patchset #25 id:470001 of https://codereview.chromium.org/611653002/) by joshualitt · 10 years ago
  74. fe1233c Cleanup of shader building system by joshualitt · 10 years ago
  75. 307796b Plumb OptDrawState down to VertexShaderBuilder by egdaniel · 10 years ago
  76. b0a8a37 Patch to create a distinct geometry processor. The vast majority of this patch by joshualitt · 10 years ago
  77. c064824 Calculate Primary and Secondary output types in the GrOptDrawState by egdaniel · 10 years ago
  78. ae44496 Change GrGLProgramDesc header to have DoPathRendering flag instead of RequiresVertexShader by egdaniel · 10 years ago
  79. 23e280d Changes to remove program effects builder by joshualitt · 10 years ago
  80. 408d612 Breaking out full program and frag only by joshualitt · 10 years ago
  81. 170f90b Attach GrOptDrawState into shader building pipeline by egdaniel · 10 years ago
  82. 49586be removing GrDrawEffect by joshualitt · 10 years ago
  83. 8a4c103 Revert of Attach GrOptDrawState into shader building pipeline (patchset #11 id:220001 of https://codereview.chromium.org/504203004/) by egdaniel · 10 years ago
  84. 08da4f2 Revert of removing GrDrawEffect (patchset #4 id:60001 of https://codereview.chromium.org/571163002/) by joshualitt · 10 years ago
  85. 8ddbe8b removing GrDrawEffect by joshualitt · 10 years ago
  86. ee62065 Attach GrOptDrawState into shader building pipeline by egdaniel · 10 years ago
  87. 49f085d "NULL !=" = NULL by bsalomon · 10 years ago
  88. bd769d0 Initial change to create GeometryProcessor by joshualitt · 10 years ago
  89. 842b086 When ignoring color input don't use vertex attribs on gpu by egdaniel · 10 years ago
  90. ec56e45 Implement NV_path_rendering on OpenGL ES by kkinnunen · 10 years ago
  91. 30ba436 Initial refactor of shaderbuilder to prepare for geometry shaders by joshualitt · 10 years ago
  92. ccdaa04 Separate GL path rendering state from GrGpuGL to GrGLPathRendering by kkinnunen · 10 years ago
  93. dddc18a Make GrGLProgram be available to GrGLProgramDataManager by kkinnunen · 10 years ago
  94. 7510b22 Rename GrGLUniformManager to GrGLProgramDataManager by kkinnunen · 10 years ago
  95. 02cafcc Remove gpu shader optimatization for solid white or trans black colors by egdaniel · 10 years ago
  96. c855ca0 Revert of Remove gpu shader optimatization for solid white or trans black colors (https://codereview.chromium.org/375823005/) by egdaniel · 10 years ago
  97. 5f78d22 Remove gpu shader optimatization for solid white or trans black colors by egdaniel · 10 years ago
  98. a05fa06 Use GrGLShaderBuilder::GenProgramOutput in GrGLProgram. by commit-bot@chromium.org · 10 years ago
  99. facad13 Make GrGLShaderBuilder store a GenProgramOutput by commit-bot@chromium.org · 10 years ago
  100. 6eac42e Incremental refactoring of GrGLProgram and GrGLShaderBuilder by commit-bot@chromium.org · 10 years ago