Displaying 2 results from an estimated 2 matches for "egl_gallium".
2011 Dec 01
4
[Bug 43428] New: Segmentation Fault in nv50_screen_fence_update
...ignedTo: nouveau at lists.freedesktop.org
ReportedBy: philipp-dev at knechtges.com
Created attachment 54024
--> https://bugs.freedesktop.org/attachment.cgi?id=54024
backtrace of the crash
Nouveau in the combination with the egl_dri2 driver crashes in the
aforementioned function. The egl_gallium driver seems to work fine (tested with
Mesa 7.11.2), but this driver is unfortunately not shipped with fedora.
As the bug vanishes if I use the latest Mesa 7.12-devel (git-ccd4d43), I would
suggest that some of the patches that substitute the function
nv50_screen_fence_update are ported back to 7....
2009 Dec 31
1
[PATCH] Autogenerate uureg opcode macros
...t/gen_uureg_opcodes.sh
diff --git a/src/gallium/programs/galliumut/Makefile b/src/gallium/programs/galliumut/Makefile
index ab0d684..4cb9d7c 100644
--- a/src/gallium/programs/galliumut/Makefile
+++ b/src/gallium/programs/galliumut/Makefile
@@ -9,3 +9,8 @@ LIBRARY_DEFINES = --std=gnu99
C_SOURCES = egl_gallium.c image.c normal_gen.c
include ../../Makefile.template
+
+default: uureg_opcodes.h
+
+uureg_opcodes.h: gen_uureg_opcodes.sh
+ bash $^ > $@
diff --git a/src/gallium/programs/galliumut/gen_uureg_opcodes.sh b/src/gallium/programs/galliumut/gen_uureg_opcodes.sh
new file mode 100644
index 0000000....