All of lore.kernel.org
 help / color / mirror / Atom feed
* [Bug 82977] New: freeze when copying between larger OpenGL buffers (glCopyBufferSubData)
@ 2014-08-22 22:32 bugzilla-daemon
  2014-08-23  2:31 ` [Bug 82977] " bugzilla-daemon
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: bugzilla-daemon @ 2014-08-22 22:32 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 1900 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=82977

          Priority: medium
            Bug ID: 82977
          Assignee: dri-devel@lists.freedesktop.org
           Summary: freeze when copying between larger OpenGL buffers
                    (glCopyBufferSubData)
          Severity: normal
    Classification: Unclassified
                OS: Linux (All)
          Reporter: osbios@web.de
          Hardware: x86-64 (AMD64)
            Status: NEW
           Version: git
         Component: Drivers/Gallium/radeonsi
           Product: Mesa

Created attachment 105127
  --> https://bugs.freedesktop.org/attachment.cgi?id=105127&action=edit
glxinfo

Ubuntu 14.04. With Oibaf repository for GPU drivers.
Radeon 7870 (Pitcairn)

When I try to run glCopyBufferSubData on large buffers (128MB works ok, 200MiB
not) my Desktop freezes and I only can move the mouse around.
The mouse curser image stays the same after that. E.g. a normal pointer or text
marker icon.

I have no relevant message in dmsg.0 or Xorg.1.log, as far as I can tell.


Minimal example code that will trigger the freeze (After using sdl2 to init
Core GL3.3 Context + Window):

int bufferSize = 200 * 1024 * 1024;
GLuint clientBufferId, serverBufferId;
glGenBuffers(1, &clientBufferId);
glBindBuffer(GL_ARRAY_BUFFER, clientBufferId);
glBufferStorage(GL_ARRAY_BUFFER, bufferSize, 0, /*GL_DYNAMIC_STORAGE_BIT |
GL_MAP_WRITE_BIT | GL_MAP_READ_BIT | GL_MAP_PERSISTENT_BIT|
GL_CLIENT_STORAGE_BIT*/0);

glGenBuffers(1, &serverBufferId);
glBindBuffer(GL_ARRAY_BUFFER, serverBufferId);
glBufferStorage(GL_ARRAY_BUFFER, bufferSize, 0, 0);

glBindBuffer(GL_ARRAY_BUFFER, 0);
glBindBuffer(GL_COPY_READ_BUFFER,  clientBufferId);
glBindBuffer(GL_COPY_WRITE_BUFFER, serverBufferId);
glCopyBufferSubData(GL_COPY_READ_BUFFER, GL_COPY_WRITE_BUFFER, 0, 0,
bufferSize);

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 3322 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2014-08-27  8:23 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-22 22:32 [Bug 82977] New: freeze when copying between larger OpenGL buffers (glCopyBufferSubData) bugzilla-daemon
2014-08-23  2:31 ` [Bug 82977] " bugzilla-daemon
2014-08-23 11:26 ` bugzilla-daemon
2014-08-23 11:26 ` bugzilla-daemon
2014-08-23 11:27 ` bugzilla-daemon
2014-08-23 11:29 ` bugzilla-daemon
2014-08-23 22:29 ` bugzilla-daemon
2014-08-23 22:29 ` bugzilla-daemon
2014-08-23 22:30 ` bugzilla-daemon
2014-08-23 22:32 ` bugzilla-daemon
2014-08-25 12:11 ` bugzilla-daemon
2014-08-26  6:29 ` bugzilla-daemon
2014-08-26 13:10 ` bugzilla-daemon
2014-08-26 13:11 ` bugzilla-daemon
2014-08-26 13:49 ` bugzilla-daemon
2014-08-26 18:03 ` bugzilla-daemon
2014-08-27  8:23 ` bugzilla-daemon

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.