public inbox for cygwin-xfree@sourceware.org
help / color / mirror / Atom feed
From: Chris Carlson <cwcarlsonc@cox.net>
To: cygwin-xfree@cygwin.com
Subject: Re: glwDrawingAreaWidgetClass
Date: Mon, 13 Oct 2014 01:50:00 -0000	[thread overview]
Message-ID: <543B2F63.9030403@cox.net> (raw)
In-Reply-To: <0DqF1p0240YP9AS01DqG2B>

I apologize for being so vague.

I have a fairly large program that I developed on Fedora Linux.  It uses 
glwDrawingAreaClassRec to create a GL window.  I attempted to compile 
and run it on Cygwin, and I got the failure.

I added a print statement just before calling XtCreateManagedWidget() 
and discovered the value was 0 on Cygwin and an address on Linux.  I 
presumed that meant there was an issue.

To get around the problem, I downloaded the source from Mesa and 
compiled it myself.  The .a that was generated identifies the following 
(using nm):

0000000000000640 D glwDrawingAreaClassRec
0000000000000728 D glwDrawingAreaWidgetClass

I then compared it to /lib/libGLw.dll.a and got this:

nm /lib/libGLw.dll.a | grep DrawingAreaClass
0000000000000000 I __imp_glwMDrawingAreaClassRec
0000000000000000 I __nm_glwMDrawingAreaClassRec
0000000000000000 I __imp_glwDrawingAreaClassRec
0000000000000000 I __nm_glwDrawingAreaClassRec

Now I tried compiling your test program and found that it did work as 
you showed, but I then added the include of GLwDrawA.h, and it fails.  
This doesn't make a whole lot of sense to me, and it doesn't seem right.

What do you think?  If I want to use the GLwDrawingAreaWidgetClass, I 
would presume that I should include the corresponding header file and 
the class would be defined.

Thanks for your time, and I really do appreciate you and Cygwin.
Chris Carlson



On 10/7/2014 6:50 AM, Jon TURNEY wrote:
> On 07/10/2014 03:31, Chris Carlson wrote:
>> I've discovered that the constant glwDrawingAreaWidgetClass is set to
>> 0.  It's supposed to be defined as:
>>
>> WidgetClass 
>> glwDrawingAreaWidgetClass=(WidgetClass)&glwDrawingAreaClassRec;
>
> Can I ask you to please provide some more details as to how you made 
> this discovery?
>
> If you do this:
>
> $ cat glw-test.c
> #include <Xm/Xm.h>
> #include <GL/GLwDrawA.h>
> #include <stdio.h>
>
> int main()
> {
>    printf("glwDrawingAreaWidgetClass %p", glwDrawingAreaWidgetClass);
> }
>
> then you could reach that conclusion:
>
> $ gcc glw-test.c ; ./a
> glwDrawingAreaWidgetClass 0x0
>
> but this isn't testing correctly as glwDrawingAreaWidgetClass isn't 
> marked as extern in GLwDrawA.h
>
> $ cat glw-test.c
> #include <Xm/Xm.h>
> #include <stdio.h>
>
> extern WidgetClass glwDrawingAreaWidgetClass;
>
> int main()
> {
>    printf("glwDrawingAreaWidgetClass %p", glwDrawingAreaWidgetClass);
> }
>
> $ gcc glw-test.c -lGLw ; ./a
> glwDrawingAreaWidgetClass 0x5bd8e3640
>
>> Is it broken?
>
> I don't know.
>


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://x.cygwin.com/docs/
FAQ:                   http://x.cygwin.com/docs/faq/


  parent reply	other threads:[~2014-10-13  1:50 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-10-07  2:32 glwDrawingAreaWidgetClass Chris Carlson
2014-10-07 13:50 ` glwDrawingAreaWidgetClass Jon TURNEY
     [not found] ` <0DqF1p0240YP9AS01DqG2B>
2014-10-13  1:50   ` Chris Carlson [this message]
2014-10-14 19:37     ` glwDrawingAreaWidgetClass Jon TURNEY

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=543B2F63.9030403@cox.net \
    --to=cwcarlsonc@cox.net \
    --cc=cygwin-xfree@cygwin.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).