Re: [Mesa-dev] context sharing of framebuffer objects

2013-09-30 Thread Henri Verbeet
On 30 September 2013 02:18, Dave Airlie airl...@gmail.com wrote: So this led me to look at the spec and the mesa code, and I noticed it appears at some point maybe around 3.1 that FBOs are no longer considered shared objects at least in core profile, but mesa always seems to share them, just

Re: [Mesa-dev] context sharing of framebuffer objects

2013-09-30 Thread Erik Faye-Lund
On Mon, Sep 30, 2013 at 11:01 AM, Henri Verbeet hverb...@gmail.com wrote: On 30 September 2013 02:18, Dave Airlie airl...@gmail.com wrote: So this led me to look at the spec and the mesa code, and I noticed it appears at some point maybe around 3.1 that FBOs are no longer considered shared

Re: [Mesa-dev] context sharing of framebuffer objects

2013-09-30 Thread Ian Romanick
On 09/29/2013 05:18 PM, Dave Airlie wrote: Hey, So for virgl I was praying I could avoid having to keep a GL context on the host per guest context but it appears to do NV_conditional_render properly I either need the ability to suspend/resume queries (maybe I could write an extension) or I

[Mesa-dev] context sharing of framebuffer objects

2013-09-29 Thread Dave Airlie
Hey, So for virgl I was praying I could avoid having to keep a GL context on the host per guest context but it appears to do NV_conditional_render properly I either need the ability to suspend/resume queries (maybe I could write an extension) or I need contexts :-( So this led me to look at the