-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- New upstream version 1.5.4 - Use simplified file(INSTALL ...) for copyright file - Add libepoxy-1.5.4_Add_call_convention_to_mock_function.patch Co-authored-by: nicole mazzuca <[email protected]>
- Loading branch information
1 parent
3b79a2d
commit 0567431
Showing
3 changed files
with
34 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Source: libepoxy | ||
Version: 1.5.3-4 | ||
Homepage: https://github.com/anholt/libepoxy | ||
Description: Epoxy is a library for handling OpenGL function pointer management for you | ||
Build-Depends: tool-meson | ||
Source: libepoxy | ||
Version: 1.5.4 | ||
Homepage: https://github.com/anholt/libepoxy | ||
Description: Epoxy is a library for handling OpenGL function pointer management for you | ||
Build-Depends: tool-meson |
22 changes: 22 additions & 0 deletions
22
ports/libepoxy/libepoxy-1.5.4_Add_call_convention_to_mock_function.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
From 81d758d025089d6b3b5309205ff4cb75789e6205 Mon Sep 17 00:00:00 2001 | ||
From: crziter <[email protected]> | ||
Date: Tue, 25 Feb 2020 11:33:56 +0700 | ||
Subject: [PATCH] Add call convention to mock function | ||
|
||
--- | ||
test/gl_version.c | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/test/gl_version.c b/test/gl_version.c | ||
index 9ab0080..9fe1bba 100644 | ||
--- a/test/gl_version.c | ||
+++ b/test/gl_version.c | ||
@@ -29,7 +29,7 @@ GLenum mock_enum; | ||
const char *mock_gl_version; | ||
const char *mock_glsl_version; | ||
|
||
-static const GLubyte *override_glGetString(GLenum name) | ||
+static const GLubyte * EPOXY_CALLSPEC override_glGetString(GLenum name) | ||
{ | ||
switch (name) { | ||
case GL_VERSION: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters