1. 04 Aug, 2014 - 1 commit
  2. 27 Jun, 2014 - 1 commit
  3. 31 Mar, 2014 - 1 commit
    • Simon Hausmann's avatar
      Centralize OpenGL initialization · 3d6d6594
      Simon Hausmann authored
      
      We now require the user to use QWebEngine::initialize() in main (preferably) and
      print out an error message if this wasn't set up accordingly. This limits the use
      of private scene graph API to inside QWebEngine and offers public API for users
      of the API.
      
      Change-Id: I787c176a85ab7784dbc8787d9876960b4872959e
      Reviewed-by: default avatarJocelyn Turcotte <jocelyn.turcotte@digia.com>
      3d6d6594
  4. 19 Mar, 2014 - 1 commit
  5. 14 Feb, 2014 - 1 commit
  6. 26 Nov, 2013 - 1 commit
  7. 11 Nov, 2013 - 1 commit
    • Jocelyn Turcotte's avatar
      Delegated renderer: Put textures on those quads. · 7403ef59
      Jocelyn Turcotte authored
      
      A few changes are necessary to allow fetching textures provided by
      the render processes through IPC and bound to their respective GL
      context in the GPU process and use them in the QtQuick scene graph.
      
      - Remove the plain color test textures.
      - Allow setting the QtQuick QOpenGLContext's handle as the share
        context for all context set as shared in the Chromium GPU process.
        We do this by letting the GpuChannelManager ask us for a
        ShareGroup instance responsible for returning a sharing GL context
        handle.
      - Fetch texture IDs from the MailboxManager used by the GPU process
        using the Mailbox given to us in the DelegatedFrameData.
        This is the same mechanism used by Chromium to share textures
        between "client" GL contexts.
      - Keep the QtQuick scene graph threads and Chromium in-process GPU
        thread separate. The complicated part of merging those two
        rendering pipelines on the same thread is that it would force Qt
        to also use only one thread for rendering. For the moment we will
        try to synchronize those threads together instead.
      - Lock the Qt SG thread while waiting for resource sync points.
        Do so by posting a callback to the Chromium GPU thread and wait
        until the sync point of every resource has been retired by the
        producing contexts.
      - Acknowledge the delegated from once QtQuick swapped the GL buffers
        instead of right after we added the frame to the scene graph.
        This fixes some issues where the textures for the previous frame
        would already be released as Chromium was producing the new frame.
      
      There are still a few issues regarding synchronization that have to
      be fixed, especially when Qt triggers the rendering of a new frame
      while Chromium is starting to produce the next frame.
      
      Note: To enable it we still need to pass the following command switches:
      --enable-delegated-renderer --enable-threaded-compositing --in-process-gpu
      
      Change-Id: I2d4f7fac603b1808ed1495a8d689cb48e9ed41b9
      Reviewed-by: default avatarZeno Albisser <zeno.albisser@digia.com>
      7403ef59
  8. 19 Aug, 2013 - 1 commit
  9. 31 Jul, 2013 - 1 commit
    • Pierre Rossi's avatar
      Split out the Widgets and QtQuick integration · 67d042d0
      Pierre Rossi authored
      
      This is the first step to making proper Qt Modules out of QtWebEngine.
      The Widgets integration becomes a proper C++ Qt Module while we make
      the QtQuick side a QML plugin for now (could probably be promoted if
      the need arises).
      
      Code-wise, this means the introduction of a WebContentsAdapterClient
      interface that is subclassed by the private implementation of our API
      classes for delegation of things that are UI specific. Functionality
      from WebContents and the like is exposed via the WebContentsAdapter.
      
      Change-Id: I4ca3395b9fe8502a24e36002cfd5af44067bb6e8
      Reviewed-by: default avatarJocelyn Turcotte <jocelyn.turcotte@digia.com>
      67d042d0
  10. 17 Jun, 2013 - 2 commits
  11. 06 Jun, 2013 - 2 commits
    • Jocelyn Turcotte's avatar
      Properly implement a QWidget and QtQuick API · 5bf14ccc
      Jocelyn Turcotte authored
      This layers things properly to be able to implement the UI in the
      example application instead of directly in shell_qt.cpp.
      
      This is still using global variables to allow the Shell platform
      code to do callbacks to the API classes. This should go away once
      we properly implemented a WebContentsDelegate.
      5bf14ccc
    • Zeno Albisser's avatar
      remove blinqpage · 8736ce7b
      Zeno Albisser authored
      8736ce7b
  12. 31 May, 2013 - 2 commits
  13. 30 Apr, 2013 - 1 commit
  14. 29 Apr, 2013 - 1 commit
  15. 17 Apr, 2013 - 1 commit
  16. 11 Apr, 2013 - 1 commit