Home | History | Annotate | Download | only in gpu

Lines Matching defs:extensionsUtil

91     OwnPtr<Extensions3DUtil> extensionsUtil = Extensions3DUtil::create(context.get());
92 if (!extensionsUtil) {
96 bool multisampleSupported = extensionsUtil->supportsExtension("GL_CHROMIUM_framebuffer_multisample")
97 && extensionsUtil->supportsExtension("GL_OES_rgb8_rgba8");
99 extensionsUtil->ensureExtensionEnabled("GL_CHROMIUM_framebuffer_multisample");
100 extensionsUtil->ensureExtensionEnabled("GL_OES_rgb8_rgba8");
102 bool packedDepthStencilSupported = extensionsUtil->supportsExtension("GL_OES_packed_depth_stencil");
104 extensionsUtil->ensureExtensionEnabled("GL_OES_packed_depth_stencil");
106 RefPtr<DrawingBuffer> drawingBuffer = adoptRef(new DrawingBuffer(context, extensionsUtil.release(), multisampleSupported, packedDepthStencilSupported, preserve, requestedAttributes, contextEvictionManager));
115 PassOwnPtr<Extensions3DUtil> extensionsUtil,
127 , m_extensionsUtil(extensionsUtil)