Mir

Merge lp://qastaging/~kdub/mir/egl-sync-khr into lp://qastaging/mir

Proposed by Kevin DuBois
Status: Merged
Approved by: Alan Griffiths
Approved revision: no longer in the source branch.
Merged at revision: 3137
Proposed branch: lp://qastaging/~kdub/mir/egl-sync-khr
Merge into: lp://qastaging/mir
Diff against target: 581 lines (+427/-20)
10 files modified
include/test/mir/test/doubles/mock_egl.h (+4/-0)
src/include/platform/mir/graphics/egl_extensions.h (+9/-0)
src/include/platform/mir/graphics/egl_sync_fence.h (+82/-0)
src/platform/graphics/CMakeLists.txt (+1/-0)
src/platform/graphics/egl_extensions.cpp (+19/-10)
src/platform/graphics/egl_sync_fence.cpp (+93/-0)
tests/mir_test_doubles/mock_egl.cpp (+27/-0)
tests/unit-tests/graphics/CMakeLists.txt (+1/-0)
tests/unit-tests/graphics/test_egl_extensions.cpp (+40/-10)
tests/unit-tests/graphics/test_egl_sync_fence.cpp (+151/-0)
To merge this branch: bzr merge lp://qastaging/~kdub/mir/egl-sync-khr
Reviewer Review Type Date Requested Status
Alan Griffiths Approve
Chris Halse Rogers Approve
PS Jenkins bot (community) continuous-integration Approve
Alberto Aguirre (community) Approve
Review via email: mp+277578@code.qastaging.launchpad.net

Commit message

graphics: add objects for supporting the EGL_KHR_fence_sync extensions

Description of the change

graphics: add objects for supporting the EGL_KHR_fence_sync extensions*

*corrected from original description to make note of correct extension.

To post a comment you must log in.
Revision history for this message
Alberto Aguirre (albaguirre) wrote :

Looks ok, although I would prefer to remove raise and put that chunk of code in in the constructor instead.

Any reason why we need to create one object and call raise repeatedly on it?

Why not create EGLSync objects as needed and then just have a wait and wait_for api?

review: Needs Information
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
Chris Halse Rogers (raof) wrote :

Yeah, this doesn't currently use the “reusable” bit of EGL_KHR_reusable_sync.

It would seem to be clearer to either have this be an *actual* EGLSyncKHR proxy¹ or make it more obviously single-shot².

¹: so, take an EGLDisplay in the constructor, construct the EGLSyncKHR, and then the sync can be repeatedly raised/waited on without being destroyed. This would seem to eliminate the need for the locking, too.

²: raise() in the constructor, permanently invalidate after waiting-on.

review: Needs Information
Revision history for this message
Kevin DuBois (kdub) wrote :

I mistyped in the description. This is support for KHR_fence_sync, not KHR_reusable_sync (the latter of which isn't on some of our devices)

Having one object that we're not creating and recreating is preferable, just because I intend to just have one instance of this placed into mga::NativeFence. A singular instance sync fence instance in mga::NativeFence helps resolve some subtle problems with some versions of HWC (1.0).

Its also struck me as unintuitive that creating (ie, make_shared<>) the object implicitly inserts a sync point to the GL command stream at the time of creation. IMO, Its a bit more clear in that less comments have to be read if we have to call raise() explicitly.

Revision history for this message
Alberto Aguirre (albaguirre) wrote :

I would prefer just "wait_for" instead of clear_or_timeout_after

And have wait_for throw if the fence has been reset or it has already been waited on - at least so we can detect programming errors in which a wait_for call is made before raise.

review: Needs Information
Revision history for this message
Kevin DuBois (kdub) wrote :

@Alberto,
Changed to suggested name.

I'd rather have wait_for() just return as cleared if the fence hasn't been raised. This lets the waiting bit of code have less communication with the code that's raising the fence.

Eg: If we fixed https://bugs.launchpad.net/mir/+bug/1395421 by shoving the buffer sending code into its own thread, we'd need less communication between the threads; we'd just call wait_for() in the ipc thread.

Even in the current setup, we could drop some buffers without raising a fence on them. As the code is, wait_for() will just return.

Revision history for this message
Kevin DuBois (kdub) wrote :

> Changed to suggested name.
but forgot to push until today/friday

Revision history for this message
Alberto Aguirre (albaguirre) wrote :

OK, I guess since EGLSyncFence is attached to a buffer, starting in signaled state can make sense (i.e. resource is available). And raise pulses that availability. I suppose the ordering of the raise/wait_for calls is externally enforced through the BufferQueue/BufferStream mechanisms already.

review: Approve
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
Revision history for this message
Chris Halse Rogers (raof) wrote :

+TEST_F(EglSyncFence, raise_sets_sync_point)
+{
+ Sequence seq;
+ EXPECT_CALL(mock_egl, eglGetCurrentDisplay());
+ EXPECT_CALL(mock_egl, eglCreateSyncKHR(mock_egl.fake_egl_display, EGL_SYNC_FENCE_KHR, nullptr))
+ .WillOnce(Return(fake_fence0));
+ EXPECT_CALL(mock_egl, eglDestroySyncKHR(mock_egl.fake_egl_display, fake_fence0))
+ .InSequence(seq); //destructor should call this

You don't need the Sequence here, as there's only one thing in the sequence?

Otherwise looks good.

review: Approve
Revision history for this message
Alan Griffiths (alan-griffiths) wrote :

> +TEST_F(EglSyncFence, raise_sets_sync_point)
> +{
> + Sequence seq;
> + EXPECT_CALL(mock_egl, eglGetCurrentDisplay());
> + EXPECT_CALL(mock_egl, eglCreateSyncKHR(mock_egl.fake_egl_display,
> EGL_SYNC_FENCE_KHR, nullptr))
> + .WillOnce(Return(fake_fence0));
> + EXPECT_CALL(mock_egl, eglDestroySyncKHR(mock_egl.fake_egl_display,
> fake_fence0))
> + .InSequence(seq); //destructor should call this
>
> You don't need the Sequence here, as there's only one thing in the sequence?

In the cited case (and others) ".InSequence(seq)" call is actually redundant and misleading as, by default, the sequence will be applied to any expectations set while "seq" is in scope.

review: Approve
Revision history for this message
Chris Halse Rogers (raof) wrote :

I believe that you're thinking of the InSequence type, rather than
Sequence? InSequence is the scope based auto-sequence; Sequence needs to be
explicitly used in a .InSequence() expectation.

Revision history for this message
Alan Griffiths (alan-griffiths) wrote :

> I believe that you're thinking of the InSequence type, rather than
> Sequence? InSequence is the scope based auto-sequence; Sequence needs to be
> explicitly used in a .InSequence() expectation.

right

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
The diff is not available at this time. You can reload the page or download it.

Subscribers

People subscribed via source and target branches