Home
last modified time | relevance | path

Searched refs:msaaSampleCount (Results 1 – 11 of 11) sorted by relevance

/external/skia/include/views/
DSkOSWindow_Win.h43 bool attach(SkBackEndTypes attachType, int msaaSampleCount, bool deepColor, AttachmentInfo*);
120 bool attachGL(int msaaSampleCount, bool deepColor, AttachmentInfo* info);
125 bool attachANGLE(int msaaSampleCount, AttachmentInfo* info);
DSkOSWindow_iOS.h25 bool attach(SkBackEndTypes attachType, int msaaSampleCount, bool deepColor,
DSkOSWindow_Mac.h33 bool attach(SkBackEndTypes attachType, int msaaSampleCount, bool deepColor,
DSkOSWindow_Unix.h44 bool attach(SkBackEndTypes attachType, int msaaSampleCount, bool deepColor, AttachmentInfo*);
/external/skia/src/views/win/
DSkOSWindow_win.cpp331 bool SkOSWindow::attachGL(int msaaSampleCount, bool deepColor, AttachmentInfo* info) { in attachGL() argument
334 fHGLRC = SkCreateWGLContext(dc, msaaSampleCount, deepColor, in attachGL()
453 int msaaSampleCount, in create_ANGLE() argument
495 if (msaaSampleCount) { in create_ANGLE()
506 msaaConfigAttribList[kConfigAttribListCnt + 2] = msaaSampleCount; in create_ANGLE()
546 bool SkOSWindow::attachANGLE(int msaaSampleCount, AttachmentInfo* info) { in attachANGLE() argument
549 msaaSampleCount, in attachANGLE()
603 bool SkOSWindow::attach(SkBackEndTypes attachType, int msaaSampleCount, bool deepColor, in attach() argument
618 result = attachGL(msaaSampleCount, deepColor, info); in attach()
622 result = attachANGLE(msaaSampleCount, info); in attach()
/external/skia/src/utils/win/
DSkWGL_win.cpp291 bool doubleBuffered, int msaaSampleCount, bool deepColor, in get_pixel_formats_to_try() argument
317 if (msaaSampleCount > 0 && in get_pixel_formats_to_try()
321 appendAttr(msaaIAttrs, SK_WGL_SAMPLES, msaaSampleCount); in get_pixel_formats_to_try()
327 formatsToTry[0] = extensions.selectFormat(formats, num, dc, msaaSampleCount); in get_pixel_formats_to_try()
407 HGLRC SkCreateWGLContext(HDC dc, int msaaSampleCount, bool deepColor, in SkCreateWGLContext() argument
417 get_pixel_formats_to_try(dc, extensions, true, msaaSampleCount, deepColor, pixelFormatsToTry); in SkCreateWGLContext()
433 SkWGLPbufferContext* SkWGLPbufferContext::Create(HDC parentDC, int msaaSampleCount, in Create() argument
445 get_pixel_formats_to_try(parentDC, extensions, (0 != dblBuffer), msaaSampleCount, in Create()
DSkWGL.h136 HGLRC SkCreateWGLContext(HDC dc, int msaaSampleCount, bool deepColor, SkWGLContextRequest context,
146 static SkWGLPbufferContext* Create(HDC parentDC, int msaaSampleCount,
/external/skia/src/views/ios/
DSkOSWindow_iOS.mm61 int /* msaaSampleCount */,
/external/skia/src/views/mac/
DSkNSView.mm338 static CGLContextObj createGLContext(int msaaSampleCount) {
352 if (msaaSampleCount > 0) {
362 (CGLPixelFormatAttribute)msaaSampleCount;
/external/skia/experimental/iOSSampleApp/
DSkSampleUIView.mm49 void setUpBackend(SampleWindow* win, int msaaSampleCount, bool deepColor) override {
67 bool result = win->attach(fBackend, msaaSampleCount, false, &info);
72 fMSAASampleCount = msaaSampleCount;
/external/skia/src/views/unix/
DSkOSWindow_Unix.cpp351 bool SkOSWindow::attach(SkBackEndTypes, int msaaSampleCount, bool deepColor, in attach() argument
353 this->initWindow(msaaSampleCount, info); in attach()