Second half of refactoring to move SW path rendering to GrPathRenderer

http://codereview.appspot.com/6125046/



git-svn-id: http://skia.googlecode.com/svn/trunk@3804 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
robertphillips@google.com 2012-05-01 12:19:34 +00:00
Родитель 02b1ea24fd
Коммит 7c2578d392
2 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -264,6 +264,8 @@
'../src/gpu/GrTDArray.h',
'../src/gpu/GrTesselatedPathRenderer.cpp',
'../src/gpu/GrTesselatedPathRenderer.h',
'../src/gpu/GrSoftwarePathRenderer.cpp',
'../src/gpu/GrSoftwarePathRenderer.h',
'../src/gpu/GrTextStrike.cpp',
'../src/gpu/GrTextStrike.h',
'../src/gpu/GrTextStrike_impl.h',

Просмотреть файл

@ -9,6 +9,7 @@
#include "GrAAHairLinePathRenderer.h"
#include "GrAAConvexPathRenderer.h"
#include "GrSoftwarePathRenderer.h"
void GrPathRenderer::AddPathRenderers(GrContext* ctx,
GrPathRendererChain::UsageFlags flags,
@ -19,5 +20,6 @@ void GrPathRenderer::AddPathRenderers(GrContext* ctx,
chain->addPathRenderer(pr)->unref();
}
chain->addPathRenderer(new GrAAConvexPathRenderer())->unref();
chain->addPathRenderer(new GrSoftwarePathRenderer(ctx))->unref();
}
}