Move clang-format, update deps
This commit is contained in:
parent
1a4123cd54
commit
5a10a24a19
@ -40,7 +40,7 @@ $maria_version = "11.2.2"
|
|||||||
$maria_link = "https://archive.mariadb.org/mariadb-$maria_version/winx64-packages/mariadb-$maria_version-winx64.zip"
|
$maria_link = "https://archive.mariadb.org/mariadb-$maria_version/winx64-packages/mariadb-$maria_version-winx64.zip"
|
||||||
$maria_output = "maria.zip"
|
$maria_output = "maria.zip"
|
||||||
|
|
||||||
$cmake_version = "3.27.9"
|
$cmake_version = "3.28.1"
|
||||||
$cmake_link = "https://github.com/Kitware/CMake/releases/download/v$cmake_version/cmake-$cmake_version-windows-x86_64.zip"
|
$cmake_link = "https://github.com/Kitware/CMake/releases/download/v$cmake_version/cmake-$cmake_version-windows-x86_64.zip"
|
||||||
$cmake_output = "cmake.zip"
|
$cmake_output = "cmake.zip"
|
||||||
|
|
||||||
@ -48,7 +48,7 @@ $zlib_version = "1.3"
|
|||||||
$zlib_link = "https://github.com/madler/zlib/archive/refs/tags/v$zlib_version.zip"
|
$zlib_link = "https://github.com/madler/zlib/archive/refs/tags/v$zlib_version.zip"
|
||||||
$zlib_output = "zlib.zip"
|
$zlib_output = "zlib.zip"
|
||||||
|
|
||||||
$libmpv_version = "20231211-git-566a96f"
|
$libmpv_version = "20231220-git-17be6e1"
|
||||||
$libmpv_link = "https://github.com/zhongfly/mpv-winbuild/releases/download/2023-12-11-566a96f/mpv-dev-x86_64-$libmpv_version.7z"
|
$libmpv_link = "https://github.com/zhongfly/mpv-winbuild/releases/download/2023-12-11-566a96f/mpv-dev-x86_64-$libmpv_version.7z"
|
||||||
$libmpv_output = "mpv.zip"
|
$libmpv_output = "mpv.zip"
|
||||||
|
|
||||||
|
@ -590,8 +590,7 @@ void FormMessageFiltersManager::beautifyScript() {
|
|||||||
proc_clang_format.setArguments({"--assume-filename=script.js", "--style=Chromium"});
|
proc_clang_format.setArguments({"--assume-filename=script.js", "--style=Chromium"});
|
||||||
|
|
||||||
#if defined(Q_OS_WIN)
|
#if defined(Q_OS_WIN)
|
||||||
proc_clang_format.setProgram(qApp->applicationDirPath() + QDir::separator() + QSL("clang-format") +
|
proc_clang_format.setProgram(qApp->applicationDirPath() + QDir::separator() + QSL("clang-format.exe"));
|
||||||
QDir::separator() + QSL("clang-format.exe"));
|
|
||||||
#else
|
#else
|
||||||
proc_clang_format.setProgram(QSL("clang-format"));
|
proc_clang_format.setProgram(QSL("clang-format"));
|
||||||
#endif
|
#endif
|
||||||
|
@ -23,7 +23,7 @@ LibMpvWidget::LibMpvWidget(mpv_handle* mpv_handle, QWidget* parent)
|
|||||||
: BASE_WIDGET(parent), m_mpvHandle(mpv_handle)
|
: BASE_WIDGET(parent), m_mpvHandle(mpv_handle)
|
||||||
#if defined(MEDIAPLAYER_LIBMPV_OPENGL)
|
#if defined(MEDIAPLAYER_LIBMPV_OPENGL)
|
||||||
,
|
,
|
||||||
m_mpvGl(nullptr)
|
m_mpvGL(nullptr)
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
#if !defined(MEDIAPLAYER_LIBMPV_OPENGL)
|
#if !defined(MEDIAPLAYER_LIBMPV_OPENGL)
|
||||||
@ -60,9 +60,9 @@ void LibMpvWidget::destroyHandle() {
|
|||||||
#if defined(MEDIAPLAYER_LIBMPV_OPENGL)
|
#if defined(MEDIAPLAYER_LIBMPV_OPENGL)
|
||||||
makeCurrent();
|
makeCurrent();
|
||||||
|
|
||||||
if (m_mpvGl != nullptr) {
|
if (m_mpvGL != nullptr) {
|
||||||
mpv_render_context_free(m_mpvGl);
|
mpv_render_context_free(m_mpvGL);
|
||||||
m_mpvGl = nullptr;
|
m_mpvGL = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
doneCurrent();
|
doneCurrent();
|
||||||
@ -126,11 +126,11 @@ void LibMpvWidget::initializeGL() {
|
|||||||
display,
|
display,
|
||||||
{MPV_RENDER_PARAM_INVALID, nullptr}};
|
{MPV_RENDER_PARAM_INVALID, nullptr}};
|
||||||
|
|
||||||
if (mpv_render_context_create(&m_mpvGl, m_mpvHandle, params) < 0) {
|
if (mpv_render_context_create(&m_mpvGL, m_mpvHandle, params) < 0) {
|
||||||
qFatal("failed to initialize mpv GL context");
|
qFatal("failed to initialize mpv GL context");
|
||||||
}
|
}
|
||||||
|
|
||||||
mpv_render_context_set_update_callback(m_mpvGl, LibMpvWidget::onMpvRedraw, reinterpret_cast<void*>(this));
|
mpv_render_context_set_update_callback(m_mpvGL, LibMpvWidget::onMpvRedraw, reinterpret_cast<void*>(this));
|
||||||
}
|
}
|
||||||
|
|
||||||
void LibMpvWidget::paintGL() {
|
void LibMpvWidget::paintGL() {
|
||||||
@ -140,8 +140,7 @@ void LibMpvWidget::paintGL() {
|
|||||||
mpv_render_param params[] = {{MPV_RENDER_PARAM_OPENGL_FBO, &mpfbo},
|
mpv_render_param params[] = {{MPV_RENDER_PARAM_OPENGL_FBO, &mpfbo},
|
||||||
{MPV_RENDER_PARAM_FLIP_Y, &flip_y},
|
{MPV_RENDER_PARAM_FLIP_Y, &flip_y},
|
||||||
{MPV_RENDER_PARAM_INVALID, nullptr}};
|
{MPV_RENDER_PARAM_INVALID, nullptr}};
|
||||||
// See render_gl.h on what OpenGL environment mpv expects, and
|
|
||||||
// other API details.
|
mpv_render_context_render(m_mpvGL, params);
|
||||||
mpv_render_context_render(m_mpvGl, params);
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -46,7 +46,7 @@ class LibMpvWidget : public BASE_WIDGET {
|
|||||||
private:
|
private:
|
||||||
static void onMpvRedraw(void* ctx);
|
static void onMpvRedraw(void* ctx);
|
||||||
|
|
||||||
mpv_render_context* m_mpvGl;
|
mpv_render_context* m_mpvGL;
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -50,9 +50,8 @@ if(WIN32)
|
|||||||
DESTINATION .
|
DESTINATION .
|
||||||
FILES_MATCHING PATTERN "*.dll"
|
FILES_MATCHING PATTERN "*.dll"
|
||||||
)
|
)
|
||||||
install(DIRECTORY ${CMAKE_SOURCE_DIR}/resources/scripts/clang-format
|
install(FILES ${CMAKE_SOURCE_DIR}/resources/scripts/clang-format/clang-format.exe
|
||||||
DESTINATION .
|
DESTINATION .
|
||||||
FILES_MATCHING PATTERN "*.exe"
|
|
||||||
)
|
)
|
||||||
elseif(OS2)
|
elseif(OS2)
|
||||||
install(TARGETS app DESTINATION .)
|
install(TARGETS app DESTINATION .)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user