-
Notifications
You must be signed in to change notification settings - Fork 143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
STM Backend support #57
STM Backend support #57
Conversation
@@ -15,12 +15,16 @@ WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_CSS_GRID_LAYOUT PRIVATE ON) | |||
WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_CSS_IMAGE_SET PUBLIC ON) | |||
WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_CSS_REGIONS PUBLIC ON) | |||
WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_CSS_SELECTORS_LEVEL4 PUBLIC ON) | |||
WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_DATABASE_PROCESS PRIVATE ON) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The changes in this file seem unrelated to the patch. Please make sure you base your branch on top of current WPE master.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Addressed by rebasing files.
) | ||
list(APPEND WPE_SOURCES | ||
Source/Graphics/STM/RenderingBackendSTM.cpp | ||
Source/Graphics/RenderingBackend.cpp |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think you need this line, the file is already included in the list on line 114.
@zdobersek |
Looks OK, thanks for the updates. |
Thanks @zdobersek |
This breaks non-Wayland nexus builds:
Shouldn't inclusion of the header files for each backend be conditional on the associated backend being enabled? |
@armcc added a guard in the header file in master |
Thanks @albertd |
See #79 for the port on new WPE |
This request addresses the review comments of pull -#40