mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-16 00:30:06 +02:00
* Includes experimental EGL library * Software Rast is no longer a thing on Haiku but older mesa_swrast packages can be used on later versions of our OpenGL kit. * There are some bugs, so lets wait a few revs before using these packages in the build.
49 lines
1.2 KiB
Plaintext
49 lines
1.2 KiB
Plaintext
From c35ec7ccdc1a308fc2dbc542bf9935302310673f Mon Sep 17 00:00:00 2001
|
|
From: Alexander von Gluck IV <kallisti5@unixzen.com>
|
|
Date: Sat, 26 Sep 2015 11:39:09 -0500
|
|
Subject: [PATCH] state_trackers/hgl: Fix missing include path
|
|
|
|
---
|
|
src/gallium/state_trackers/hgl/SConscript | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/gallium/state_trackers/hgl/SConscript b/src/gallium/state_trackers/hgl/SConscript
|
|
index 82a0ce0..d2389c8 100644
|
|
--- a/src/gallium/state_trackers/hgl/SConscript
|
|
+++ b/src/gallium/state_trackers/hgl/SConscript
|
|
@@ -9,6 +9,7 @@ env.Append(CPPPATH = [
|
|
'#/src',
|
|
'#/src/mapi',
|
|
'#/src/mesa',
|
|
+ '#/include/HaikuGL',
|
|
])
|
|
|
|
sources = [
|
|
--
|
|
2.2.2
|
|
|
|
From 50c6e31d33e7aec3896b415f656f67a36729eeb9 Mon Sep 17 00:00:00 2001
|
|
From: Alexander von Gluck IV <kallisti5@unixzen.com>
|
|
Date: Sat, 26 Sep 2015 11:49:36 -0500
|
|
Subject: [PATCH] egl: Fix missing Haiku include path
|
|
|
|
---
|
|
src/egl/SConscript | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/egl/SConscript b/src/egl/SConscript
|
|
index f8102db..8f8b11a 100644
|
|
--- a/src/egl/SConscript
|
|
+++ b/src/egl/SConscript
|
|
@@ -8,6 +8,7 @@ env = env.Clone()
|
|
|
|
env.Append(CPPPATH = [
|
|
'#/include',
|
|
+ '#/include/HaikuGL',
|
|
'#/src/egl/main',
|
|
'#/src',
|
|
])
|
|
--
|
|
2.2.2
|
|
|