https://bugs.freedesktop.org/show_bug.cgi?id=77966
Priority: medium
Bug ID: 77966
Assignee: dri-devel(a)lists.freedesktop.org
Summary: Trails / Tracks when rendering OpenGL ES 2 moving
objects (Android-x86 / Mesa 10.0.4/5)
Severity: minor
Classification: Unclassified
OS: other
Reporter: pstglia(a)gmail.com
Hardware: x86-64 (AMD64)
Status: NEW
Version: 10.0
…
[View More] Component: Drivers/Gallium/r600
Product: Mesa
Created attachment 98023
--> https://bugs.freedesktop.org/attachment.cgi?id=98023&action=edit
logs for "Learn OpenGL ES 2.0" Samples (debug.egl.trace 1)
Hi,
I'm running the latest version of Android-x86 ( Kitkat RC1 ), but replaced
bundled Mesa 9.2.1 by 10.0.4 and latter by 10.0.5 (See the procedure on
https://groups.google.com/forum/#!topic/android-x86/lKPmDXtNzjM).
This replacement gives support to my Radeon (7660D IGP). However, some OpenGL
ES 2 apps have a problem when rendering a sequence of moving objects. Seems
previous frame is not clean, keeping a trail / track of the previous image.
A example of this is "Learn OpenGL ES 2" sample tutorial apps
(http://www.learnopengles.com/). I attached 2 pics showing the problem.
Other apps using OpenGL ES 2 render correctly without problems. I got a picture
from an app called "Live Ocean Benchmark", which works perfectly. Also, Play
Store games like "Lawless" and "Angry Birds Star Wars" works correctly, except
for the very first logos (they also have this redraw problem).
I turned on "debug.egl.trace" and generated logs to compare a working app (Live
Ocean Benchmark) with a problematic one (Learn OpenGL ES 2). I attached them.
Could you say if this is a known problem with these versions of OpenGL?
Couldn't test 10.1 on Android source tree to compare (Compiling errors).
Here's the full specs of machine/environment I tested:
CPU: AMD A10 5800K
VGA: Radeon 7660D (IGP - Integrated to the processor)
MEM: 8 Gb RAM (Corsair Vengeance 1600)
SO: Android-x86 ("KitKat - RC1" - Kernel 3.10.30 - 32 bits)
Mesa versions tested:
- 9.2.1 (Doesn't support my IGP)
- 10.0.4 (problem described above)
- 10.0.5 (same as 10.0.4)
"OpenGL driver version" on Android Settings show this:
GL Vendor: X.org
GL Renderer: Gallium 0.4 on AMD ARUBA
GL Version: OpenGL ES 2.0 Mesa 10.0.4
Note: I created a bootable iso image to test it:
https://drive.google.com/file/d/0BxO6THtB865fanJ3MVdXWUplams/edit?usp=shari…
Thanks in advance
--
You are receiving this mail because:
You are the assignee for the bug.
[View Less]
https://bugs.freedesktop.org/show_bug.cgi?id=78169
Priority: medium
Bug ID: 78169
Assignee: dri-devel(a)lists.freedesktop.org
Summary: raetikon game does segfault
Severity: major
Classification: Unclassified
OS: Linux (All)
Reporter: sylvain.bertrand(a)gmail.com
Hardware: x86-64 (AMD64)
Status: NEW
Version: 10.1
Component: Drivers/Gallium/radeonsi
Product: …
[View More]Mesa
raetikon (native 64 bits) game bought with steam (up-to-date beta client).
up-to-date fedora rawhide (then recent linux and mesa).
I get in dmesg: Raetikon64[1282]: segfault at 70 ip 00007f39bfeaad3d sp
00007fffca5b01b0 error 6 in libfmodex64.so[7f39bfe5b000+132000]
--
You are receiving this mail because:
You are the assignee for the bug.
[View Less]
Hi,
this patch serie implements a simple DRM driver for the ATMEL High end LCD
controller found in the SAMA5 familly. It's based on the tilcdc driver.
It uses the cma_helper for memory and fbdev stuff.
Your comments are welcome !
Supported features:
* the base layer (the main framebuffer)
* a simple panel
* a backlight driver
* structure to 'easily' add other connectors (it comes from the tilcdc)
On the todo list:
* support overlays as drm_planes
* support for the hardware cursor
* support …
[View More]for the SiI9022 HDMI connector (present on sama5d36ek)
Jean-Jacques Hiblot (3):
atmel: drm: added drm driver for the atmel hlcd controller
atmel: drm: dt: Added DT entry for the atmel hlcdc found in the sama5
atmel: dt: Add supports for the lcdc support on the sama5d36ek
arch/arm/boot/dts/sama5d36ek.dts | 27 +-
arch/arm/boot/dts/sama5d3_lcd.dtsi | 11 +
drivers/gpu/drm/Kconfig | 2 +
drivers/gpu/drm/Makefile | 1 +
drivers/gpu/drm/atmel_hlcdc/Kconfig | 13 +
drivers/gpu/drm/atmel_hlcdc/Makefile | 12 +
drivers/gpu/drm/atmel_hlcdc/atmel_hlcdc.h | 771 +++++++++++++++++++++
.../gpu/drm/atmel_hlcdc/atmel_hlcdc_backlight.c | 92 +++
.../gpu/drm/atmel_hlcdc/atmel_hlcdc_backlight.h | 25 +
drivers/gpu/drm/atmel_hlcdc/atmel_hlcdc_crtc.c | 702 +++++++++++++++++++
drivers/gpu/drm/atmel_hlcdc/atmel_hlcdc_drv.c | 586 ++++++++++++++++
drivers/gpu/drm/atmel_hlcdc/atmel_hlcdc_drv.h | 124 ++++
drivers/gpu/drm/atmel_hlcdc/atmel_hlcdc_ovl.h | 190 +++++
drivers/gpu/drm/atmel_hlcdc/atmel_hlcdc_panel.c | 459 ++++++++++++
drivers/gpu/drm/atmel_hlcdc/atmel_hlcdc_panel.h | 28 +
15 files changed, 3042 insertions(+), 1 deletion(-)
create mode 100644 drivers/gpu/drm/atmel_hlcdc/Kconfig
create mode 100644 drivers/gpu/drm/atmel_hlcdc/Makefile
create mode 100644 drivers/gpu/drm/atmel_hlcdc/atmel_hlcdc.h
create mode 100644 drivers/gpu/drm/atmel_hlcdc/atmel_hlcdc_backlight.c
create mode 100644 drivers/gpu/drm/atmel_hlcdc/atmel_hlcdc_backlight.h
create mode 100644 drivers/gpu/drm/atmel_hlcdc/atmel_hlcdc_crtc.c
create mode 100644 drivers/gpu/drm/atmel_hlcdc/atmel_hlcdc_drv.c
create mode 100644 drivers/gpu/drm/atmel_hlcdc/atmel_hlcdc_drv.h
create mode 100644 drivers/gpu/drm/atmel_hlcdc/atmel_hlcdc_ovl.h
create mode 100644 drivers/gpu/drm/atmel_hlcdc/atmel_hlcdc_panel.c
create mode 100644 drivers/gpu/drm/atmel_hlcdc/atmel_hlcdc_panel.h
--
1.9.1
[View Less]