<div dir="ltr"><div><div><div><div>I just updated the cgl code at <a href="http://cgit.freedesktop.org/~ranma42/cairo/log/?h=wip/cgl">http://cgit.freedesktop.org/~ranma42/cairo/log/?h=wip/cgl</a><br><br></div>I believe that we should at least merge "test: Make glx-based tests depend on glx availability" in master and then decide about CGL/NSGL.<br>
</div><br></div>We might start with CGL in order to get GL working on OSX soon, so that we can test and profile it to ensure that it is working and to figure out if/when it provides better performance.<br>NSGL and EAGL are definitely more interesting for application developers, because they integrate better with Obj-C and Cocoa applications, but they seem to have a heavier impact in the Cairo build
 system.<br></div><div><div><div><br></div><div>Andrea<br></div><div><br></div></div></div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Sat, Feb 16, 2013 at 2:53 AM, Henry (Yu) Song - SISA <span dir="ltr"><<a href="mailto:hsong@sisa.samsung.com" target="_blank">hsong@sisa.samsung.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I think both binding are fine, two concerns lead me to use NSOpenGLContext<br>
<br>
1. no extra work on app side, there is no need to get CGLObjRef from an NSGLView, using nsgl, you can cairo_gl_surface_create_for_view () directly<br>
2. Apple is definitely going with OBJC-based API, In the future, CGL interface might be deprecated, just like lots of AGL APIs have been deprecated.  In addition, EAGL is OBJC-only, there is no CGL for that.  Once EAGL is mature/feature complete, it can be easier to get EAGL with cairo.<br>

<br>
Chris suggested to have runtime switch between glx and NSOpenGLContext - I am not sure it will be doable unless we have new cairo API to indicate which library to load.  Otherwise, there will be two libraries (libGL.so and OpenGLFramework) that both have identical symbols.<br>

<br>
One more thing I need cairo community help before it can be upstreamed - I am not so familiar with autoconf/automake, I could not make autoconf to use CCLD instead of OBJCLD when compile for glx, wgl or egl.  OBJCLD is always used for linking libcairo.so and cairo-test-suite.  Please help on that.  nsgl binding location is <a href="https://github.com/csyuschmjuh/cairo-nsgl" target="_blank">https://github.com/csyuschmjuh/cairo-nsgl</a>.  Please feel free to experiment and please help out on OBJCLD issue.<br>

<br>
Thanks a lot<br>
<br>
Henry<br>
<br>
<br>
From: Andrea Canciani [<a href="mailto:ranma42@gmail.com">ranma42@gmail.com</a>]<br>
Sent: Saturday, February 02, 2013 8:55 AM<br>
<div class="im">To: Henry (Yu) Song - SISA<br>
</div>Cc: Carlos López González; <a href="mailto:cairo@cairographics.org">cairo@cairographics.org</a><br>
<div class="HOEnZb"><div class="h5">Subject: Re: [cairo] Threaded animation with cairo_gl backend over a GtkWidget<br>
<br>
On Sat, Jan 19, 2013 at 10:53 PM, Andrea Canciani <<a href="mailto:ranma42@gmail.com">ranma42@gmail.com</a>> wrote:<br>
> On Wed, Jan 16, 2013 at 12:55 AM, Henry (Yu) Song - SISA<br>
> <<a href="mailto:hsong@sisa.samsung.com">hsong@sisa.samsung.com</a>> wrote:<br>
>> I also created a cairo to NSOpenGLContext binding such that you don't need<br>
>> glx, gtk on mac, you can use cocoa directly.  It is located<br>
>> <a href="https://github.com/csyuschmjuh/cairo-nsgl" target="_blank">https://github.com/csyuschmjuh/cairo-nsgl</a>, I need someone to test/confirm<br>
>> its is working - NSView is working, but not implemented for virtual screen<br>
>> yet.<br>
><br>
> Wouldn't it be better to bind it to CoreGL?<br>
> It is lower level (in fact NSOpenGLContext is based on it, you can<br>
> even get the underlying CGL context using the CGLContextObj selector)<br>
> and it has primitives which are easier to map to cairo-gl.<br>
> The documentation is available here:<br>
> <a href="https://developer.apple.com/library/mac/#documentation/graphicsimaging/Reference/CGL_OpenGL/Reference/reference.html#//apple_ref/doc/uid/TP40001186" target="_blank">https://developer.apple.com/library/mac/#documentation/graphicsimaging/Reference/CGL_OpenGL/Reference/reference.html#//apple_ref/doc/uid/TP40001186</a><br>

><br>
<br>
I finally had some time to try CGL.<br>
The result is the branch<br>
<a href="http://cgit.freedesktop.org/~ranma42/cairo/log/?h=wip/cgl" target="_blank">http://cgit.freedesktop.org/~ranma42/cairo/log/?h=wip/cgl</a><br>
<br>
Andrea<br>
<br>
<br>
>><br>
>> To compile for nsopengl on mac "./configure --prefix=/your_install_directory<br>
>> --enable-gl=yes --enable-glx=no --enable-nsgl=yes"<br>
>><br>
>> To compile for glx on mac "./configure --prefix=/your_install_directory<br>
>> --enable-gl=yes"<br>
>><br>
>> Attached is the cocoa-based sample code with cairo. compile it with "gcc -o<br>
>> cairo-nsgl-fill cairo-nsgl-fill.m `pkg-config --libs --cflags cairo`<br>
>> -framework OpenGL -framework AppKit"<br>
><br>
> I will try ASAP.<br>
> I'm still very busy with my PhD, but I'm trying to catch up with the<br>
> cairo/pixman-related mail and work I left behind.<br>
><br>
>><br>
>> Thanks<br>
>><br>
>> Henry<br>
>><br>
>> ________________________________<br>
>> From: cairo-bounces+hsong=<a href="mailto:sisa.samsung.com@cairographics.org">sisa.samsung.com@cairographics.org</a><br>
>> [cairo-bounces+hsong=<a href="mailto:sisa.samsung.com@cairographics.org">sisa.samsung.com@cairographics.org</a>] on behalf of Henry<br>
>> (Yu) Song - SISA [<a href="mailto:hsong@sisa.samsung.com">hsong@sisa.samsung.com</a>]<br>
>> Sent: Tuesday, January 15, 2013 3:43 PM<br>
>> To: Carlos López González<br>
>><br>
>> Cc: <a href="mailto:cairo@cairographics.org">cairo@cairographics.org</a><br>
>> Subject: Re: [cairo] Threaded animation with cairo_gl backend over a<br>
>> GtkWidget<br>
>><br>
>> You are using a driver that does not support window/pixmap multisampling.<br>
>> Remove GLX_SAMPLE_BUFFERS and GLX_SAMPLES, that should work for you.<br>
>><br>
>> cairo-gles supports both glx/gl and egl/gles.  You still can use MSAA for<br>
>> rendering to texture, but you will fallback to spans/traps compositors for<br>
>> rendering to pixmap/window because your driver does not support msaa on<br>
>> window/pixmap.<br>
>><br>
>> In your sample, you are creating a texture-based gl_surface, I am not sure<br>
>> what kind of surface is created by gdk binding to cairo - most likely it is<br>
>> an image surface.  in that case, you will get a performance hit by<br>
>> downloading texture to image in system memory.<br>
>><br>
>> Henry<br>
>><br>
>><br>
>> ________________________________<br>
>> From: Carlos López González [<a href="mailto:genetita@gmail.com">genetita@gmail.com</a>]<br>
>> Sent: Tuesday, January 15, 2013 3:04 PM<br>
>> To: Henry (Yu) Song - SISA<br>
>> Cc: <a href="mailto:cairo@cairographics.org">cairo@cairographics.org</a><br>
>> Subject: Re: [cairo] Threaded animation with cairo_gl backend over a<br>
>> GtkWidget<br>
>><br>
>> The code modifications applied to the laptop gives a null surface because<br>
>> glXChooseVisual returns a NULL pointer when creating the XVisualInfo for the<br>
>> modified attributes. Possibly my graphic card doesn't support those<br>
>> requirements.<br>
>> Attached are the glxinfo output and the interesting line from lspci.<br>
>> I'll test it on OSX tomorrow.<br>
>> Thanks!<br>
>><br>
>><br>
>> 2013/1/15 Carlos López González <<a href="mailto:genetita@gmail.com">genetita@gmail.com</a>><br>
>>><br>
>>> Hi Henry,<br>
>>> thank you very much for your detailed reply and the code additions. I'll<br>
>>> give it a try and would let you know the results.<br>
>>> I considered cairogles but isn't it created for embedded systems? When it<br>
>>> were added upstream, would it be suitable to be used in non embedded system?<br>
>>> In case of use cairogles, where can I find its API?<br>
>>> Thanks!<br>
>>><br>
>>><br>
>>> 2013/1/15 Henry (Yu) Song - SISA <<a href="mailto:hsong@sisa.samsung.com">hsong@sisa.samsung.com</a>><br>
>>><br>
>>>> I modified your code a little as attached.  Two changes<br>
>>>><br>
>>>> 1. add cairo_gl_device_set_thread_aware ()<br>
>>>> 2. add GLX_SAMPLES/GLX_SAMPLE_BUFFER<br>
>>>><br>
>>>> 1. The first add is to reduce GL context switch if you have dedicated one<br>
>>>> thread for rendering (regardless where you create your gl_surface).  If you<br>
>>>> have multiple threads that render to the same gl surface, you cannot<br>
>>>> set_thread_aware (device, FALSE)<br>
>>>><br>
>>>> 2. If your driver (proprietary nvidia, fglrx and latest intel (mesa ><br>
>>>> 9.0) on sandbridge/ivybridge) supports MSAA, you might want to try our new<br>
>>>> cairo which uses MSAA for antialiasing. It is at<br>
>>>> <a href="http://code.google.com/p/cairogles" target="_blank">http://code.google.com/p/cairogles</a>.  It is faster than gl backend in the<br>
>>>> cairo upstream and we are in process of upstreaming it.  It is also more<br>
>>>> stable.  If you want to MSAA on window/pixmap, you need to add GLX_SAMPLES<br>
>>>> and GLX_SAMPLE_BUFFERS to your glx attrib.  If you want to experiment more<br>
>>>> complex drawing, I recommend you use our gles, it is more stable and fast (I<br>
>>>> think it is the fastest backend at this moment given your driver supports<br>
>>>> MSAA, and you don't want to have ANTIALIAS_BEST/subpixel). When you use our<br>
>>>> cairogles, please set CAIRO_GL_COMPOSITOR=msaa in your environment.<br>
>>>><br>
>>>> 3. There is a caveat when you are using gl surface in cairo at this<br>
>>>> moment.  You need to dedicate a gl context to cairo.  You cannot interleave<br>
>>>> cairo with gl calls/or other library that uses the same gl context as cairo.<br>
>>>> If you do that, you MUST same context/drawable/any other GL states before<br>
>>>> you call gl directly and you MUST restore these before you enter cairo<br>
>>>> drawing.<br>
>>>><br>
>>>> Let me how pixman compare to gl in your test case,  Don't have<br>
>>>> radeon/nouveau drivers, not sure how they turn out.<br>
>>>><br>
>>>> Henry<br>
>>>> ________________________________________<br>
>>>> From: cairo-bounces+hsong=<a href="mailto:sisa.samsung.com@cairographics.org">sisa.samsung.com@cairographics.org</a><br>
>>>> [cairo-bounces+hsong=<a href="mailto:sisa.samsung.com@cairographics.org">sisa.samsung.com@cairographics.org</a>] on behalf of Carlos<br>
>>>> López González [<a href="mailto:genetita@gmail.com">genetita@gmail.com</a>]<br>
>>>> Sent: Tuesday, January 15, 2013 11:39 AM<br>
>>>> To: <a href="mailto:cairo@cairographics.org">cairo@cairographics.org</a><br>
>>>> Subject: Re: [cairo] Threaded animation with cairo_gl backend over a<br>
>>>> GtkWidget<br>
>>>><br>
>>>> Hi!<br>
>>>> I've modified the mentioned Cairo animation with miltithreading example<br>
>>>> [1] to use a cairo_gl_surface, expecting to have some GPU acceleration. It<br>
>>>> works fine (doesn't crash) but when I use a cairo_gl_surface it runs much<br>
>>>> slow than when I use a image surface (!). See code here:<br>
>>>><br>
>>>> <a href="https://github.com/genete/my-test-area/blob/direct_draw/src/cairo_sample.c" target="_blank">https://github.com/genete/my-test-area/blob/direct_draw/src/cairo_sample.c</a><br>
>>>><br>
>>>> commenting the line at 135 and 137 I can use cairo_image or cairo_gl.<br>
>>>><br>
>>>> Same code has been compiled and run in a iMac 2011 using XQuarz as<br>
>>>> Xserver with the same result.<br>
>>>><br>
>>>> Am I missing something at the cairo_gl code or simply I would never could<br>
>>>> make use of my GPU in my linux laptop or my iMac?<br>
>>>><br>
>>>> I appreciate any help.<br>
>>>> Thanks!<br>
>>>><br>
>>>> [1] <a href="http://cairographics.org/threaded_animation_with_cairo/" target="_blank">http://cairographics.org/threaded_animation_with_cairo/</a><br>
>>>><br>
>>>> 2013/1/15 Carlos López González<br>
>>>> <<a href="mailto:genetita@gmail.com">genetita@gmail.com</a><mailto:<a href="mailto:genetita@gmail.com">genetita@gmail.com</a>>><br>
>>>> I forgot to CC cairo list<br>
>>>><br>
>>>> ---------- Forwarded message ----------<br>
>>>> From: Carlos López González<br>
>>>> <<a href="mailto:genetita@gmail.com">genetita@gmail.com</a><mailto:<a href="mailto:genetita@gmail.com">genetita@gmail.com</a>>><br>
>>>> Date: 2013/1/15<br>
>>>> Subject: Re: [cairo] Threaded animation with cairo_gl backend over a<br>
>>>> GtkWidget<br>
>>>> To: Uli Schlachter <<a href="mailto:psychon@znc.in">psychon@znc.in</a><mailto:<a href="mailto:psychon@znc.in">psychon@znc.in</a>>><br>
>>>><br>
>>>><br>
>>>> Hi!<br>
>>>> I've upgraded to Ubuntu 12.10 and as part of the upgrade Ubuntu disabled<br>
>>>> the proprietary nvidia driver.<br>
>>>> With the  the nouveau driver enabled and simply enable multithreading, it<br>
>>>> crash.<br>
>>>><br>
>>>> carlos@laptop:~/my-test-area/build$ LANG=C ./cairo-sample<br>
>>>> [xcb] Unknown request in queue while dequeuing<br>
>>>> [xcb] Most likely this is a multi-threaded client and XInitThreads has<br>
>>>> not been called<br>
>>>> [xcb] Aborting, sorry about that.<br>
>>>> cairo-sample: ../../src/xcb_io.c:178: dequeue_pending_request: Assertion<br>
>>>> `!xcb_xlib_unknown_req_in_deq' failed.<br>
>>>> Abortado (`core' generado)<br>
>>>><br>
>>>> But when add XIniThreads()  as shown in the previous post, it doesn't<br>
>>>> crash but it runs *extremely* slow (?). I'm using a GeForce 8400M GS graphic<br>
>>>> card (glxgears runs smoothly).<br>
>>>><br>
>>>> If I enable the private nvidia-current driver it crashes in any case with<br>
>>>> the same message than I had before. The suggested breakpoint or the --sync<br>
>>>> option doesn't help much.<br>
>>>><br>
>>>> So which are my alternatives?<br>
>>>><br>
>>>> If I create the cairo_gl_surface but not using<br>
>>>> cairo_gl_surface_create_for_window but the cairo_gl_create_surface, would it<br>
>>>> have GPU acceleration as well?<br>
>>>><br>
>>>> I just want to create a minimal example of multithreading drawing over a<br>
>>>> gtkwidget using cairo_gl to later translate to a bigger application, but it<br>
>>>> seems that it is impossible.<br>
>>>><br>
>>>> Is there any *real* application that uses Cairo with GPU acceleration in<br>
>>>> production?<br>
>>>><br>
>>>> Thanks!<br>
>>>><br>
>>>><br>
>>>> 2013/1/14 Uli Schlachter <<a href="mailto:psychon@znc.in">psychon@znc.in</a><mailto:<a href="mailto:psychon@znc.in">psychon@znc.in</a>>><br>
>>>> Hi,<br>
>>>><br>
>>>> On 14.01.2013 21:24, Carlos López González wrote:<br>
>>>> [...]<br>
>>>> > The program 'cairo-sample' received an X Window System error.<br>
>>>> > This probably reflects a bug in the program.<br>
>>>> > The error was 'BadMatch (invalid parameter attributes)'.<br>
>>>> >   (Details: serial 230 error_code 8 request_code 135 minor_code 5)<br>
>>>><br>
>>>> minor_code 5 likely is DRI2's GetBuffer request, but could also be a<br>
>>>> RANDRGetScreenInfo, RenderChangePicture, SHAPEQueryExtents,<br>
>>>> SHMCreatePixmap or<br>
>>>> SyncQueryCounter. Of course, this doesn't really help us (does it?).<br>
>>>><br>
>>>> [...]<br>
>>>> >   (Note to programmers: normally, X errors are reported asynchronously;<br>
>>>> >    that is, you will receive the error a while after causing it.<br>
>>>> >    To debug your program, run it with the --sync command line<br>
>>>> >    option to change this behavior. You can then get a meaningful<br>
>>>> >    backtrace from your debugger if you break on the gdk_x_error()<br>
>>>> > function.)<br>
>>>><br>
>>>> do "break gdk_x_error" before you "run" the program.<br>
>>>><br>
>>>> > [Thread 0xb4738b40 (LWP 3625) exited]<br>
>>>> > [Thread 0xb54ffb40 (LWP 3624) exited]<br>
>>>> > [Thread 0xb6224880 (LWP 3620) exited]<br>
>>>> > [Inferior 1 (process 3620) exited with code 01]<br>
>>>> > (gdb) where<br>
>>>> > No stack.<br>
>>>> > (gdb)<br>
>>>> ><br>
>>>> ><br>
>>>> > How can I add the --sync option?<br>
>>>><br>
>>>> If the program supports this option: "run --sync".<br>
>>>><br>
>>>> Uli<br>
>>>> --<br>
>>>> "Why make things difficult, when it is possible to make them cryptic<br>
>>>> and totally illogical, with just a little bit more effort?" -- A. P. J.<br>
>>>> --<br>
>>>> cairo mailing list<br>
>>>> <a href="mailto:cairo@cairographics.org">cairo@cairographics.org</a><mailto:<a href="mailto:cairo@cairographics.org">cairo@cairographics.org</a>><br>
>>>> <a href="http://lists.cairographics.org/mailman/listinfo/cairo" target="_blank">http://lists.cairographics.org/mailman/listinfo/cairo</a><br>
>>>><br>
>>>><br>
>>>><br>
>>>> --<br>
>>>> Carlos<br>
>>>> <a href="http://synfig.org" target="_blank">http://synfig.org</a><br>
>>>><br>
>>>><br>
>>>><br>
>>>> --<br>
>>>> Carlos<br>
>>>> <a href="http://synfig.org" target="_blank">http://synfig.org</a><br>
>>>><br>
>>>><br>
>>>><br>
>>>> --<br>
>>>> Carlos<br>
>>>> <a href="http://synfig.org" target="_blank">http://synfig.org</a><br>
>>><br>
>>><br>
>>><br>
>>><br>
>>> --<br>
>>> Carlos<br>
>>> <a href="http://synfig.org" target="_blank">http://synfig.org</a><br>
>><br>
>><br>
>><br>
>><br>
>> --<br>
>> Carlos<br>
>> <a href="http://synfig.org" target="_blank">http://synfig.org</a><br>
>><br>
>> --<br>
>> cairo mailing list<br>
>> <a href="mailto:cairo@cairographics.org">cairo@cairographics.org</a><br>
>> <a href="http://lists.cairographics.org/mailman/listinfo/cairo" target="_blank">http://lists.cairographics.org/mailman/listinfo/cairo</a></div></div></blockquote></div><br></div>