All of lore.kernel.org
 help / color / mirror / Atom feed
* [mesa] svga: Fix error: cannot take address of bit-field 'texture_target' in svga_tgsi.h
@ 2010-01-06 16:34 Sedat Dilek
  2010-01-06 17:07 ` [Mesa3d-dev] " Brian Paul
  0 siblings, 1 reply; 9+ messages in thread
From: Sedat Dilek @ 2010-01-06 16:34 UTC (permalink / raw)
  To: mesa3d-dev, DRI

[-- Attachment #1: Type: text/plain, Size: 556 bytes --]

Hi,

this patch fixes a build-error in mesa GIT master after...

commit	251363e8f1287b54dc7734e690daf2ae96728faf (patch)
"configs: set INTEL_LIBS, INTEL_CFLAGS, etcmaster"

>From my build-log:
...
In file included from svga_pipe_fs.c:37:
svga_tgsi.h: In function 'svga_fs_key_size':
svga_tgsi.h:122: error: cannot take address of bit-field 'texture_target'
make[4]: *** [svga_pipe_fs.o] Error 1

Might be introduced in...

commit	955f51270bb60ad77dba049799587dc7c0fb4dda
"Make sure we use only signed/unsigned ints with bitfields."

Kind Regars,
- Sedat -

[-- Attachment #2: 0001-svga-Fix-error-cannot-take-address-of-bit-field-text.patch --]
[-- Type: text/x-diff, Size: 1034 bytes --]

From 856679477f7350553ee983f9b2bd4ff73e86f1ac Mon Sep 17 00:00:00 2001
From: Sedat Dilek <sedat.dilek@gmail.com>
Date: Wed, 6 Jan 2010 17:22:14 +0100
Subject: [PATCH] svga: Fix error: cannot take address of bit-field 'texture_target' in svga_tgsi.h

From build-log:
...
In file included from svga_pipe_fs.c:37:
svga_tgsi.h: In function 'svga_fs_key_size':
svga_tgsi.h:122: error: cannot take address of bit-field 'texture_target'
make[4]: *** [svga_pipe_fs.o] Error 1
---
 src/gallium/drivers/svga/svga_tgsi.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/gallium/drivers/svga/svga_tgsi.h b/src/gallium/drivers/svga/svga_tgsi.h
index 1309c33..d49920d 100644
--- a/src/gallium/drivers/svga/svga_tgsi.h
+++ b/src/gallium/drivers/svga/svga_tgsi.h
@@ -56,7 +56,7 @@ struct svga_fs_compile_key
       unsigned compare_func:3;
       unsigned unnormalized:1;
       unsigned width_height_idx:7;
-      unsigned texture_target:8;
+      unsigned texture_target;
    } tex[PIPE_MAX_SAMPLERS];
 };
 
-- 
1.6.6


[-- Attachment #3: Type: text/plain, Size: 390 bytes --]

------------------------------------------------------------------------------
This SF.Net email is sponsored by the Verizon Developer Community
Take advantage of Verizon's best-in-class app development support
A streamlined, 14 day to market process makes app distribution fast and easy
Join now and get one step closer to millions of Verizon customers
http://p.sf.net/sfu/verizon-dev2dev 

[-- Attachment #4: Type: text/plain, Size: 161 bytes --]

_______________________________________________
Mesa3d-dev mailing list
Mesa3d-dev@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mesa3d-dev

^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2010-01-08 14:34 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-06 16:34 [mesa] svga: Fix error: cannot take address of bit-field 'texture_target' in svga_tgsi.h Sedat Dilek
2010-01-06 17:07 ` [Mesa3d-dev] " Brian Paul
2010-01-06 17:09   ` Sedat Dilek
2010-01-06 17:38     ` Keith Whitwell
2010-01-06 17:38     ` Brian Paul
2010-01-06 17:55       ` [Mesa3d-dev] " Sedat Dilek
2010-01-06 17:39   ` michal
2010-01-06 17:54     ` Sedat Dilek
2010-01-08 14:34       ` michal

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.