/external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/ |
AcceleratedImageBufferSurface.cpp | 39 AcceleratedImageBufferSurface::AcceleratedImageBufferSurface(const IntSize& size, OpacityMode opacityMode, int msaaSampleCount) 45 RefPtr<SkGpuDevice> device = adoptRef(new SkGpuDevice(grContext, SkBitmap::kARGB_8888_Config, size.width(), size.height(), msaaSampleCount));
|
AcceleratedImageBufferSurface.h | 42 AcceleratedImageBufferSurface(const IntSize&, OpacityMode = NonOpaque, int msaaSampleCount = 0);
|
/external/chromium_org/third_party/skia/include/views/ |
SkOSWindow_Android.h | 32 bool attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo* info);
|
SkOSWindow_iOS.h | 30 bool attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo*);
|
SkOSWindow_Win.h | 45 bool attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo*); 87 bool attachGL(int msaaSampleCount, AttachmentInfo* info); 92 bool attachANGLE(int msaaSampleCount, AttachmentInfo* info);
|
SkOSWindow_Mac.h | 35 bool attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo*);
|
SkOSWindow_Unix.h | 46 bool attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo*);
|
/external/skia/include/views/ |
SkOSWindow_Android.h | 32 bool attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo* info);
|
SkOSWindow_iOS.h | 30 bool attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo*);
|
SkOSWindow_Win.h | 45 bool attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo*); 87 bool attachGL(int msaaSampleCount, AttachmentInfo* info); 92 bool attachANGLE(int msaaSampleCount, AttachmentInfo* info);
|
SkOSWindow_Mac.h | 35 bool attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo*);
|
SkOSWindow_Unix.h | 46 bool attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo*);
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
Canvas2DImageBufferSurface.h | 42 Canvas2DImageBufferSurface(const IntSize& size, OpacityMode opacityMode = NonOpaque, int msaaSampleCount = 1) 44 , m_layerBridge(Canvas2DLayerBridge::create(size, opacityMode, msaaSampleCount))
|
Canvas2DLayerBridge.cpp | 46 static PassRefPtr<SkSurface> createSkSurface(GraphicsContext3D* context3D, const IntSize& size, int msaaSampleCount) 58 return adoptRef(SkSurface::NewRenderTarget(gr, info, msaaSampleCount)); 61 PassRefPtr<Canvas2DLayerBridge> Canvas2DLayerBridge::create(const IntSize& size, OpacityMode opacityMode, int msaaSampleCount) 65 RefPtr<SkSurface> surface(createSkSurface(context.get(), size, msaaSampleCount)); 70 layerBridge = adoptRef(new Canvas2DLayerBridge(context, canvas.release(), msaaSampleCount, opacityMode)); 74 Canvas2DLayerBridge::Canvas2DLayerBridge(PassRefPtr<GraphicsContext3D> context, PassOwnPtr<SkDeferredCanvas> canvas, int msaaSampleCount, OpacityMode opacityMode) 77 , m_msaaSampleCount(msaaSampleCount)
|
Canvas2DLayerBridge.h | 54 static PassRefPtr<Canvas2DLayerBridge> create(const IntSize&, OpacityMode, int msaaSampleCount);
|
/external/chromium_org/third_party/skia/src/views/win/ |
SkOSWindow_win.cpp | 331 bool SkOSWindow::attachGL(int msaaSampleCount, AttachmentInfo* info) { 334 fHGLRC = SkCreateWGLContext(dc, msaaSampleCount, false); 385 int msaaSampleCount, 425 if (msaaSampleCount) { 436 msaaConfigAttribList[kConfigAttribListCnt + 2] = msaaSampleCount; 476 bool SkOSWindow::attachANGLE(int msaaSampleCount, AttachmentInfo* info) { 479 msaaSampleCount, 537 bool SkOSWindow::attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo* info) { 551 result = attachGL(msaaSampleCount, info); 555 result = attachANGLE(msaaSampleCount, info) [all...] |
/external/skia/src/views/win/ |
SkOSWindow_win.cpp | 331 bool SkOSWindow::attachGL(int msaaSampleCount, AttachmentInfo* info) { 334 fHGLRC = SkCreateWGLContext(dc, msaaSampleCount, false); 385 int msaaSampleCount, 425 if (msaaSampleCount) { 436 msaaConfigAttribList[kConfigAttribListCnt + 2] = msaaSampleCount; 476 bool SkOSWindow::attachANGLE(int msaaSampleCount, AttachmentInfo* info) { 479 msaaSampleCount, 537 bool SkOSWindow::attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo* info) { 551 result = attachGL(msaaSampleCount, info); 555 result = attachANGLE(msaaSampleCount, info) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLCanvasElement.cpp | 428 PassOwnPtr<ImageBufferSurface> HTMLCanvasElement::createImageBufferSurface(const IntSize& deviceSize, int* msaaSampleCount) 432 *msaaSampleCount = 0; 438 *msaaSampleCount = document().settings()->accelerated2dCanvasMSAASampleCount(); 439 OwnPtr<ImageBufferSurface> surface = adoptPtr(new Canvas2DImageBufferSurface(size(), opacityMode, *msaaSampleCount)); 464 int msaaSampleCount; 465 OwnPtr<ImageBufferSurface> surface = createImageBufferSurface(deviceSize, &msaaSampleCount); 485 if (!msaaSampleCount && document().settings() && !document().settings()->antialiased2dCanvasEnabled())
|
HTMLCanvasElement.h | 138 PassOwnPtr<ImageBufferSurface> createImageBufferSurface(const IntSize& deviceSize, int* msaaSampleCount);
|
/external/chromium_org/third_party/skia/include/utils/ |
SkWGL.h | 109 * msaaSampleCount are preferred but if none is available then a context with a lower sample count 113 HGLRC SkCreateWGLContext(HDC dc, int msaaSampleCount, bool preferCoreProfile);
|
/external/chromium_org/third_party/skia/src/utils/win/ |
SkWGL_win.cpp | 248 HGLRC SkCreateWGLContext(HDC dc, int msaaSampleCount, bool preferCoreProfile) { 273 if (msaaSampleCount > 0 && 283 msaaIAttrs[kIAttrsCount + 1] = msaaSampleCount; 293 msaaSampleCount);
|
/external/skia/include/utils/ |
SkWGL.h | 109 * msaaSampleCount are preferred but if none is available then a context with a lower sample count 113 HGLRC SkCreateWGLContext(HDC dc, int msaaSampleCount, bool preferCoreProfile);
|
/external/skia/src/utils/win/ |
SkWGL_win.cpp | 248 HGLRC SkCreateWGLContext(HDC dc, int msaaSampleCount, bool preferCoreProfile) { 273 if (msaaSampleCount > 0 && 283 msaaIAttrs[kIAttrsCount + 1] = msaaSampleCount; 293 msaaSampleCount);
|
/external/chromium_org/third_party/skia/src/views/unix/ |
SkOSWindow_Unix.cpp | 312 bool SkOSWindow::attach(SkBackEndTypes, int msaaSampleCount, AttachmentInfo* info) { 313 this->initWindow(msaaSampleCount, info);
|
/external/skia/src/views/unix/ |
SkOSWindow_Unix.cpp | 312 bool SkOSWindow::attach(SkBackEndTypes, int msaaSampleCount, AttachmentInfo* info) { 313 this->initWindow(msaaSampleCount, info);
|