[Nouveau] nouveau freezes

2013-09-25 Thread Daniel Melo Jorge da Cunha
Hi, is the following a (obsolete and nobody cares) bug? I have a fedora 19 i386 with nouveau and a GeForce 7100. The option all in gnome shell does not show any icon, although they are there because if I click on the black screen it opens the program supposedly there. Also when I open and close

Re: [Nouveau] nouveau freezes

2013-09-26 Thread Daniel Melo Jorge da Cunha
2013/9/26 Ilia Mirkin imir...@alum.mit.edu On Wed, Sep 25, 2013 at 4:46 PM, Daniel Melo Jorge da Cunha dmjcu...@gmail.com wrote: Hi, is the following a (obsolete and nobody cares) bug? I have a fedora 19 i386 with nouveau and a GeForce 7100. The option all in gnome shell does not show

Re: [Nouveau] nouveau freezes

2013-09-30 Thread Daniel Melo Jorge da Cunha
2013/9/26 Daniel Melo Jorge da Cunha dmjcu...@gmail.com 2013/9/26 Ilia Mirkin imir...@alum.mit.edu On Wed, Sep 25, 2013 at 4:46 PM, Daniel Melo Jorge da Cunha dmjcu...@gmail.com wrote: Hi, is the following a (obsolete and nobody cares) bug? I have a fedora 19 i386 with nouveau

[Nouveau] nouveau_device_wrap

2014-03-11 Thread Daniel Melo Jorge da Cunha
Sorry for the lame question, but is nouveau_device_wrap (...) implemented outside Mesa source code? (like libdrm, I don't know...) Because I searched the whole Mesa-10.0.3 source and found no implementation for this function. Thanks in advance. ___

[Nouveau] nouveau.c

2014-03-26 Thread Daniel Melo Jorge da Cunha
Hi, I am inspecting the file nouveau.c... In the function nouveau_client_new there is the following: for (i = 0; i nvdev-nr_client; i++) { but nr_client has no previous assignment so it has scrambled data. Is this expected behaviour or am I missing something (the most probable :)? And someone

[Nouveau] nouveau_object_new beginner question

2014-05-22 Thread Daniel Melo Jorge da Cunha
I'm sorry for this beginner question but I can't understand. File ../nouveau/nouveau.c, function nouveau_object_new. Assuming data has content. First, obj-data = obj + 1. This is perfect after the memcpy call. But when: *(struct nouveau_object **)obj-data = obj; I can't understand because now obj

[Nouveau] creating an account on wiki-reque...@freedesktop.org

2014-12-01 Thread Daniel Melo Jorge da Cunha
Hi, I'm trying to create an account to have access to more texts, the ones with ?. But I get the error Failed to verify clearsigned PGP body on the return email. I use gpg (GnuPG) 1.4.18. Could someone help me? Thanks in advance. ___ Nouveau mailing list

[Nouveau] nouveau X nvidia

2015-04-24 Thread Daniel Melo Jorge da Cunha
Hi, just a question. If I had two systems, one with nouveau and the other with nvidia. And then I valgrind glxgears, for example. Would valgrind's output: 1- be the same in both systems? 2- be as much close as possible in both systems (the differences being due to implementations in the

Re: [Nouveau] nouveau X nvidia

2015-04-24 Thread Daniel Melo Jorge da Cunha
. order of state being emitted and when that's done), to the entire approach to e.g. fbo flipping and lots of other things. On Fri, Apr 24, 2015 at 10:12 AM, Daniel Melo Jorge da Cunha dmjcu...@gmail.com wrote: Hi, just a question. If I had two systems, one with nouveau and the other

Re: [Nouveau] help with push

2015-11-02 Thread Daniel Melo Jorge da Cunha
+ push->rsvd_kick; /* space for suffix */ > > Not sure what problem you're trying to solve. > > -ilia > > On Mon, Nov 2, 2015 at 12:31 PM, Daniel Melo Jorge da Cunha > <dmjcu...@gmail.com> wrote: > > Hi, sorry if I misunderstood everything... > > > > In th

Re: [Nouveau] help with push

2015-11-02 Thread Daniel Melo Jorge da Cunha
ize << 18) | (subc << 13) | mthd); > } > > and PUSH_SPACE in turn calls nouveau_pushbuf_space. > > -ilia > > On Mon, Nov 2, 2015 at 1:36 PM, Daniel Melo Jorge da Cunha > <dmjcu...@gmail.com> wrote: > > But at the time the mesa3d file > >

[Nouveau] help with push

2015-11-02 Thread Daniel Melo Jorge da Cunha
Hi, sorry if I misunderstood everything... In the file src/gallium/drivers/nouveau/nv30/nv30_screen.c there is loans of PUSH_DATA which is basically *push->curr = data; I'm thinking that somehow push->curr is the bo->map = drm_mmap(...) that is called in nouveau_bo_map. But I cannot see how they

[Nouveau] a few questions about OpenGL and nouveau

2016-04-05 Thread Daniel Melo Jorge da Cunha
Hi... I know... glBegin/glEnd is deprecated but I have an old computer 32bit CPU, running fedora 19, mesa-9.2.4, NV63... any help are welcomed. Please forgive if I misuderstood everything. So I have a simple OpenGL program that draws a black background and a white line... I will write the code

Re: [Nouveau] a few questions about OpenGL and nouveau

2016-04-05 Thread Daniel Melo Jorge da Cunha
<imir...@alum.mit.edu>: > On Tue, Apr 5, 2016 at 2:38 PM, Daniel Melo Jorge da Cunha > <dmjcu...@gmail.com> wrote: > > Hi... I know... glBegin/glEnd is deprecated but I have an old computer > 32bit > > CPU, > > running fedora 19, mesa-9.2.4, NV63... an

Re: [Nouveau] more one question regarding gl and nouveau

2016-04-19 Thread Daniel Melo Jorge da Cunha
r at least a file name? 2016-04-19 10:04 GMT-04:00 Ilia Mirkin <imir...@alum.mit.edu>: > On Tue, Apr 19, 2016 at 8:52 AM, Daniel Melo Jorge da Cunha > <dmjcu...@gmail.com> wrote: > > Hi, for example, if I have glVertex3f(0.75, 0.75, 1.0) how the video card > > process

Re: [Nouveau] more one question regarding gl and nouveau

2016-04-19 Thread Daniel Melo Jorge da Cunha
Wow! Things go deep... :) Thank you very much. 2016-04-19 11:44 GMT-04:00 Ilia Mirkin <imir...@alum.mit.edu>: > On Tue, Apr 19, 2016 at 11:01 AM, Daniel Melo Jorge da Cunha > <dmjcu...@gmail.com> wrote: > > Hi Ilia, you were straight to the point for me in: > >

[Nouveau] more one question regarding gl and nouveau

2016-04-19 Thread Daniel Melo Jorge da Cunha
Hi, for example, if I have glVertex3f(0.75, 0.75, 1.0) how the video card processes these three floats? Does the card work with floats? Does (mesa? gallium? driver?) process these three input floats before it is sent to the card? Where is the code for it? If you say the floats are memory mapped