2014-07-01 00:30:29 +02:00
|
|
|
// Copyright (c) 2012 The Chromium Embedded Framework Authors. All rights
|
|
|
|
// reserved. Use of this source code is governed by a BSD-style license
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
|
2015-01-31 01:55:56 +01:00
|
|
|
#ifndef CEF_TESTS_CEFCLIENT_BROWSER_OSR_RENDERER_H_
|
|
|
|
#define CEF_TESTS_CEFCLIENT_BROWSER_OSR_RENDERER_H_
|
2014-07-01 00:30:29 +02:00
|
|
|
#pragma once
|
|
|
|
|
2023-07-21 15:06:45 +02:00
|
|
|
#include <vector>
|
|
|
|
|
2014-07-01 00:30:29 +02:00
|
|
|
#include "include/cef_browser.h"
|
|
|
|
#include "include/cef_render_handler.h"
|
2018-09-26 13:25:58 +02:00
|
|
|
#include "tests/cefclient/browser/osr_renderer_settings.h"
|
2014-07-01 00:30:29 +02:00
|
|
|
|
2023-07-21 15:06:45 +02:00
|
|
|
// Enable shader-based rendering for Linux only. Windows still uses OpenGL 1.1
|
|
|
|
// to avoid the added complexity of linking newer OpenGL APIs on that platform.
|
|
|
|
// MacOS has deprecated OpenGL and we should eventually provide a Metal-based
|
|
|
|
// implementation on that platform.
|
|
|
|
#if defined(OS_LINUX)
|
|
|
|
#define USE_SHADERS 1
|
|
|
|
#else
|
|
|
|
#define USE_SHADERS 0
|
|
|
|
#endif
|
|
|
|
|
2015-01-23 18:37:23 +01:00
|
|
|
namespace client {
|
|
|
|
|
|
|
|
class OsrRenderer {
|
2014-07-01 00:30:29 +02:00
|
|
|
public:
|
2018-09-26 13:25:58 +02:00
|
|
|
explicit OsrRenderer(const OsrRendererSettings& settings);
|
2015-01-31 01:55:56 +01:00
|
|
|
~OsrRenderer();
|
2014-07-01 00:30:29 +02:00
|
|
|
|
|
|
|
// Initialize the OpenGL environment.
|
|
|
|
void Initialize();
|
|
|
|
|
|
|
|
// Clean up the OpenGL environment.
|
|
|
|
void Cleanup();
|
|
|
|
|
|
|
|
// Render to the screen.
|
|
|
|
void Render();
|
|
|
|
|
|
|
|
// Forwarded from CefRenderHandler callbacks.
|
2017-05-17 11:29:28 +02:00
|
|
|
void OnPopupShow(CefRefPtr<CefBrowser> browser, bool show);
|
2015-01-01 17:51:56 +01:00
|
|
|
// |rect| must be in pixel coordinates.
|
2017-05-17 11:29:28 +02:00
|
|
|
void OnPopupSize(CefRefPtr<CefBrowser> browser, const CefRect& rect);
|
2014-07-01 00:30:29 +02:00
|
|
|
void OnPaint(CefRefPtr<CefBrowser> browser,
|
|
|
|
CefRenderHandler::PaintElementType type,
|
|
|
|
const CefRenderHandler::RectList& dirtyRects,
|
2017-05-17 11:29:28 +02:00
|
|
|
const void* buffer,
|
|
|
|
int width,
|
|
|
|
int height);
|
2014-07-01 00:30:29 +02:00
|
|
|
|
2024-03-08 13:44:56 +01:00
|
|
|
// Used when rendering with shared textures.
|
|
|
|
void OnAcceleratedPaint(CefRefPtr<CefBrowser> browser,
|
|
|
|
CefRenderHandler::PaintElementType type,
|
|
|
|
const CefRenderHandler::RectList& dirtyRects,
|
|
|
|
unsigned int io_surface_tex,
|
|
|
|
int width,
|
|
|
|
int height);
|
|
|
|
|
2014-07-01 00:30:29 +02:00
|
|
|
// Apply spin.
|
|
|
|
void SetSpin(float spinX, float spinY);
|
|
|
|
void IncrementSpin(float spinDX, float spinDY);
|
|
|
|
|
2015-04-09 16:59:34 +02:00
|
|
|
int GetViewWidth() const { return view_width_; }
|
|
|
|
int GetViewHeight() const { return view_height_; }
|
2014-07-01 00:30:29 +02:00
|
|
|
|
2018-09-26 13:25:58 +02:00
|
|
|
CefRect popup_rect() const { return popup_rect_; }
|
|
|
|
CefRect original_popup_rect() const { return original_popup_rect_; }
|
2014-07-01 00:30:29 +02:00
|
|
|
|
|
|
|
void ClearPopupRects();
|
|
|
|
|
2024-03-08 13:44:56 +01:00
|
|
|
const OsrRendererSettings& settings() const { return settings_; }
|
|
|
|
|
2014-07-01 00:30:29 +02:00
|
|
|
private:
|
2018-09-26 13:25:58 +02:00
|
|
|
CefRect GetPopupRectInWebView(const CefRect& original_rect);
|
|
|
|
|
2017-04-20 21:28:17 +02:00
|
|
|
inline bool IsTransparent() const {
|
|
|
|
return CefColorGetA(settings_.background_color) == 0;
|
2019-03-13 22:27:37 +01:00
|
|
|
}
|
2017-04-20 21:28:17 +02:00
|
|
|
|
2018-09-26 13:25:58 +02:00
|
|
|
const OsrRendererSettings settings_;
|
2023-07-21 15:06:45 +02:00
|
|
|
bool initialized_ = false;
|
|
|
|
unsigned int texture_id_ = 0;
|
|
|
|
#if USE_SHADERS
|
|
|
|
unsigned int vao_id_ = 0;
|
|
|
|
unsigned int vbo_id_ = 0;
|
|
|
|
unsigned int screen_shader_program_id_ = 0;
|
|
|
|
unsigned int update_rect_shader_program_id_ = 0;
|
|
|
|
std::vector<float> line_vertices_;
|
|
|
|
#endif
|
|
|
|
int view_width_ = 0;
|
|
|
|
int view_height_ = 0;
|
2014-07-01 00:30:29 +02:00
|
|
|
CefRect popup_rect_;
|
|
|
|
CefRect original_popup_rect_;
|
2023-07-21 15:06:45 +02:00
|
|
|
float spin_x_ = 0;
|
|
|
|
float spin_y_ = 0;
|
2014-12-02 12:23:57 +01:00
|
|
|
CefRect update_rect_;
|
2015-01-31 01:55:56 +01:00
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(OsrRenderer);
|
2014-07-01 00:30:29 +02:00
|
|
|
};
|
|
|
|
|
2015-01-23 18:37:23 +01:00
|
|
|
} // namespace client
|
|
|
|
|
2015-01-31 01:55:56 +01:00
|
|
|
#endif // CEF_TESTS_CEFCLIENT_BROWSER_OSR_RENDERER_H_
|