@@ -40,11 +40,6 @@ struct EXTERNAL IRDKWindowManager : virtual public Core::IUnknown {
40
40
// @text onDisconnected
41
41
// @param client: the identifier of the disconnected application
42
42
virtual void OnDisconnected (const std::string& client){};
43
-
44
- // @brief Posting the client for first frame ready.
45
- // @text onReady
46
- // @param client: notify first frame event received for client or application instance ID
47
- virtual void OnReady (const string &client){};
48
43
};
49
44
50
45
/* * Register notification interface */
@@ -176,20 +171,6 @@ struct EXTERNAL IRDKWindowManager : virtual public Core::IUnknown {
176
171
// @param visible: boolean indicating the visibility status: `true` for visible, `false` for hide.
177
172
virtual Core::hresult SetVisible (const std::string &client, bool visible) = 0;
178
173
179
- /* * Get the first-frame rendered status of the application */
180
- // @text renderReady
181
- // @brief To get the status of first frame is rendered or not
182
- // @param client: client name or application instance ID
183
- // @param status: Returns true if the application has rendered first frame, false if it has not yet.
184
- virtual Core::hresult RenderReady (const string& client, bool &status /* @out */ ) const = 0;
185
-
186
- /* * To enable/disable the rendering of a Wayland display in the window manager */
187
- // @text enableDisplayRender
188
- // @brief Enable or disable the rendering of a Wayland display
189
- // @param client: client name or application instance ID
190
- // @param enable: flag to true/false for controlling the wayland render
191
- virtual Core::hresult EnableDisplayRender (const string& client, bool enable) = 0;
192
-
193
174
};
194
175
} // namespace Exchange
195
176
} // namespace WPEFramework
0 commit comments