Meenal Gupta, Noida | 1 Dec 2008 07:13
Picon
Favicon

Problem while bulding GLUT32.dll workspace

 

Hi ,

I am a newbie in these field.

I have downloaded Mesa 7.2

Build mesalib with Visual studio 2005.it was build properly.

Then I tried to build GLUT32.dll using the workspace provided

\Mesa\MesaDemos-7.2\Mesa-7.2\windows\VC8\progs\glut  with Visual studio 2005

It is giving me following linking error

 

>win32_util.obj : error LNK2019: unresolved external symbol __imp___ftime64 <at> 4 referenced in function _ftime <at> 4

1>Debug/GLUT32.DLL : fatal error LNK1120: 1 unresolved externals

 

Can you please help me to remove the errors.

 

Regards,

Meenal Gupta

 

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Mesa3d-dev mailing list
Mesa3d-dev <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mesa3d-dev
bugzilla-daemon | 1 Dec 2008 20:04

[Bug 18801] unchecked XGetVisualInfo in glxinfo

http://bugs.freedesktop.org/show_bug.cgi?id=18801

Julien Cristau <jcristau <at> debian.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|xorg-team <at> lists.x.org       |mesa3d-
                   |                            |dev <at> lists.sourceforge.net
          Component|App/glxinfo                 |Demos
            Product|xorg                        |Mesa
          QAContact|xorg-team <at> lists.x.org       |
            Version|6.9.0                       |7.2

--

-- 
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
bugzilla-daemon | 2 Dec 2008 01:21

[Bug 18838] New: Probably a typo in dlist.c: save_Lightfv()

http://bugs.freedesktop.org/show_bug.cgi?id=18838

           Summary: Probably a typo in dlist.c: save_Lightfv()
           Product: Mesa
           Version: CVS
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: minor
          Priority: medium
         Component: Mesa core
        AssignedTo: mesa3d-dev <at> lists.sourceforge.net
        ReportedBy: foo <at> mailinator.com

static void GLAPIENTRY save_Lightfv( GLenum light, GLenum pname, const GLfloat
*params )
{
   GET_CURRENT_CONTEXT(ctx);
   Node *n;
   ASSERT_OUTSIDE_SAVE_BEGIN_END_AND_FLUSH(ctx);
   n = ALLOC_INSTRUCTION( ctx, OPCODE_LIGHT, 6 );
   if (OPCODE_LIGHT) {
[...]

Isn't OPCODE_LIGHT always non-zero, therefore true?  What's the point of
testing it here, except to stress-test the compiler's diagnostics?

--

-- 
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
bugzilla-daemon | 2 Dec 2008 02:28

[Bug 18838] Probably a typo in dlist.c: save_Lightfv()

http://bugs.freedesktop.org/show_bug.cgi?id=18838

Brian Paul <brian.paul <at> tungstengraphics.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED

--- Comment #1 from Brian Paul <brian.paul <at> tungstengraphics.com>  2008-12-01 17:28:18 PST ---
The conditional should be "if (n)".  I'll fix it in git...

--

-- 
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
bugzilla-daemon | 2 Dec 2008 15:07

[Bug 11003] glTexImage3D with NULL pixels and indirect rendering causes BadLength error

http://bugs.freedesktop.org/show_bug.cgi?id=11003

Neil Roberts <bpeeluk <at> yahoo.co.uk> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bpeeluk <at> yahoo.co.uk

--

-- 
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
bugzilla-daemon | 2 Dec 2008 18:14

[Bug 11003] glTexImage3D with NULL pixels and indirect rendering causes BadLength error

http://bugs.freedesktop.org/show_bug.cgi?id=11003

--- Comment #2 from Neil Roberts <bpeeluk <at> yahoo.co.uk>  2008-12-02 09:14:52 PST ---
Created an attachment (id=20746)
 --> (http://bugs.freedesktop.org/attachment.cgi?id=20746)
Patch to fix

Here's a patch that fixes this for me. The __glXTexImage3DReqSize wasn't
checking whether the null flag was set so it assumed the request size should be
the same as if the data was there.

Why isn't the img_null_flag set for glTexImage2D? At the moment it just
redundantly uploads empty data if pixels is NULL. I guess it would be a
protocol break to change it now, but if there was a way to get it to work it
would fix this bug in Clutter:

http://bugzilla.openedhand.com/show_bug.cgi?id=1240

--

-- 
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
bugzilla-daemon | 3 Dec 2008 06:59

[Bug 18801] unchecked XGetVisualInfo in glxinfo

http://bugs.freedesktop.org/show_bug.cgi?id=18801

Peter Hutterer <peter.hutterer <at> who-t.net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |WONTFIX

--- Comment #1 from Peter Hutterer <peter.hutterer <at> who-t.net>  2008-12-02 21:59:05 PST ---
[mass change]

The CVS tree is obsolete now and these errors will not be fixed. In the future,
please file bugs only against the current git trees. See
http://wiki.x.org/wiki/ModularDevelopersGuide for more information on how to
obtain these repositories.

--

-- 
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
Verge | 3 Dec 2008 17:18
Picon

mesa libraries (glut & co.) for sparc-linux target


As the subject suggest, anyway one could achieve this?
at the moment (or should I say by default) the whole thing gets made with
the use of gcc complier. And I am trying to build gears.c using
sparc-linux-gcc, but it does not link using the sparc-linux-gcc compiler. It
all works fine using the gcc compiler, the gcc compiler reads the library
well, but when I make use of the sparc-linux-gcc compiler, it compiles but
doesn't link (it gives an error which says can't read library files).

So I'm guessing I have to make the libraries for use with a sparc-linux
target.

Please, can someone advice on how to proceed
I hope I explained this well, if not please ask.

Thanks in advance. 
--

-- 
View this message in context: http://www.nabble.com/mesa-libraries-%28glut---co.%29-for-sparc-linux-target-tp20816102p20816102.html
Sent from the mesa3d-dev mailing list archive at Nabble.com.

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
Hanno Böck | 4 Dec 2008 13:32
Picon
Gravatar

New release? (gem stuff / Intel cards)

Hi,

I wanted to ask what the plans are for a new mesa release.

I'm owner of an intel gfx card and the situation there is quite unsattisfying 
at the moment.

If you're using all up-to-date releases of packages, you won't get TTM any 
more, but you won't get GEM either, because current mesa does not have it. 
This has been the case for quite a while and the performance without GEM is 
like having no acceleration at all.

For proper GEM operation on intel cards, what is required at the moment is a 
2.6.28-rc-kernel and a mesa-git-snapshot.
As 2.6.28 will probably be out of the door pretty soon, what about a new mesa 
release shipping the gem requirements for intel?

--

-- 
Hanno Böck		Blog:		http://www.hboeck.de/
GPG: 3DBD3B20		Jabber/Mail:	hanno <at> hboeck.de

http://www.jukss.de/ Jugemdumweltkongress, 27.12.-4.1.
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Mesa3d-dev mailing list
Mesa3d-dev <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mesa3d-dev
bugzilla-daemon | 4 Dec 2008 20:19

[Bug 11003] glTexImage3D with NULL pixels and indirect rendering causes BadLength error

http://bugs.freedesktop.org/show_bug.cgi?id=11003

Ian Romanick <idr <at> freedesktop.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |idr <at> freedesktop.org

--- Comment #3 from Ian Romanick <idr <at> freedesktop.org>  2008-12-04 11:19:22 PST ---
(In reply to comment #2)
> Created an attachment (id=20746)
 --> (http://bugs.freedesktop.org/attachment.cgi?id=20746) [details]
> Patch to fix
> 
> Here's a patch that fixes this for me. The __glXTexImage3DReqSize wasn't
> checking whether the null flag was set so it assumed the request size should be
> the same as if the data was there.

That patch looks good.  That causes the if-statement to be generated for all
the __glXTexImage#DReqSize functions, right?

> Why isn't the img_null_flag set for glTexImage2D? At the moment it just
> redundantly uploads empty data if pixels is NULL. I guess it would be a

I believe that this is the way the original code was implemented.  When I did
the Python scripts I tried to reproduce the original code as closely as
possible.  Once this is fixed on the server, we should add an optional fix for
the client.  In the past we have been able to control the protocol generated by
the client with environment flags.  This isn't the first time when both client
and server handled GLX protocol in the same incorrect way. :(

> protocol break to change it now, but if there was a way to get it to work it
> would fix this bug in Clutter:
> 
> http://bugzilla.openedhand.com/show_bug.cgi?id=1240

--

-- 
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/

Gmane