Ian Romanick
30f09573ed
ARB_fbo: Add missing protocol "Get" information
2009-11-17 16:25:37 -08:00
Ian Romanick
c185ff96c9
ARB_fbo: Remove _EXT from enum names
2009-11-17 16:25:37 -08:00
Brian Paul
a54033bedb
mesa: remove old comment
2009-11-17 16:18:29 -07:00
Brian Paul
133501bef2
mesa: fix assorted compiler warnings
2009-11-17 16:16:30 -07:00
Brian Paul
bc8fb028c6
mesa: fix incorrect type in store_texel_al1616()
2009-11-17 16:16:30 -07:00
Brian Paul
7e3955d8e8
i915g: replace //-style comments
2009-11-17 16:16:30 -07:00
Brian Paul
c4c11eb456
gallium/util: replace //-style comments
2009-11-17 16:16:30 -07:00
Brian Paul
845ddbc9aa
i915g: remove trailing commas in enum lists to silence warnings
2009-11-17 16:16:30 -07:00
Brian Paul
0422053eca
mesa: remove trailing comment to silence warning
2009-11-17 16:16:30 -07:00
Brian Paul
e36751ec81
mesa: remove a bit of old code
2009-11-17 16:16:30 -07:00
Jakob Bornecrantz
46492f11f6
svga: More -Werror removal
2009-11-17 12:09:19 +01:00
Jakob Bornecrantz
8c5a108dc3
svga: Remove -Werror for now as GCC 4.4.x raises a bunch of warnings
2009-11-17 11:24:39 +01:00
Maciej Cencora
aef769207d
r300: fix reads and writes for MESA_FORMAT_S8Z24 buffer
...
Regression was introduced by texformat-rework branch merge.
2009-11-17 13:40:43 -07:00
Patrice Mandin
b353106467
nouveau: nv30: Check for NULL front (happens with DRI2)
2009-11-17 19:50:37 +01:00
Patrice Mandin
49289f1d25
nouveau: nv30: Add missing include to fix warning
2009-11-17 19:49:56 +01:00
Michel Dänzer
52be96b7fe
Remove unconditional use of glibc specific bswap_16() macro.
...
Fixes unresolved symbol bswap_16 on non-glibc or little endian glibc platforms.
2009-11-17 19:41:29 +01:00
Dan Nicholson
cf65d81cf1
dri: Ensure subdirs have finished before linking driver
...
Recursive make is hard. If there are subdirectories in the DRI drivers,
it's pretty certain we want to finish building in them before linking
the driver. Add a new target to serialize the rules.
Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
2009-11-17 11:23:19 -07:00
Michel Dänzer
33e93f4277
r600: More span breakage fixes.
...
At least now the compiler doesn't complain about implicitly declared functions
anymore...
2009-11-17 19:02:03 +01:00
Michel Dänzer
29f3e7e1d1
r600: Attempt to fix span breakage introduced by big endian fixes.
...
Only compile tested; I happened to notice people on IRC reporting
.../r600_dri.so: undefined symbol: radeon_ptr_2byte_8x2
2009-11-17 18:47:24 +01:00
Michel Dänzer
081bf9563f
radeon: Depth/stencil span code fixes for big endian.
...
Fixes e.g. text in progs/demos/arbocclude.
2009-11-17 11:09:09 +01:00
Michel Dänzer
592ce48ce9
radeon: Fix occlusion queries on big endian.
2009-11-17 11:08:21 +01:00
Michel Dänzer
2262765425
radeon: Fix software fallbacks with KMS on big endian.
2009-11-17 08:05:23 +01:00
Michel Dänzer
f2651264d3
radeon: FBO fixes for big endian.
2009-11-17 08:05:22 +01:00
Michel Dänzer
2d0c295256
Add MESA_FORMAT_XRGB8888_REV.
2009-11-17 08:05:22 +01:00
Dave Airlie
e015a4c29b
radeon: rn50's have no 3D engine so don't try and init 3D driver.
2009-11-17 16:06:26 +10:00
Jakob Bornecrantz
60769b232c
svga: Build svga driver
2009-11-17 03:18:06 +01:00
Jakob Bornecrantz
f7109aaf6c
svga: Add vmwgfx_drm.h file from vmwgfx kernel driver
...
Add the vmwgfx_drm.h header for now, this allows the svga driver
to be enabled by default without forcing people to install the
vmwgfx_drm.h header on their system.
To be removed once vmwgfx_drm.h is in libdrm.
2009-11-17 03:18:05 +01:00
Jakob Bornecrantz
3192633d4a
svga: Add svga driver
2009-11-17 03:18:04 +01:00
Jakob Bornecrantz
648e8b4c46
st/xorg: Fix copy-pasto
...
Thanks Alan.
2009-11-17 01:48:53 +01:00
Ian Romanick
fdfbae3381
i965: Use MESA_FORMAT_AL1616 when appropriate
2009-11-16 15:23:17 -08:00
Ian Romanick
b1616b2a81
Move 'static' to start of declaration to silence compiler warning
2009-11-16 15:23:16 -08:00
Ian Romanick
12982e381d
AL1616: Enable MESA_FORMAT_AL1616 for software paths
2009-11-16 15:23:16 -08:00
Ian Romanick
3325dc91be
AL1616: Add TexImage storage path
2009-11-16 15:23:16 -08:00
Ian Romanick
975871b4d5
AL1616: Add texel fetch / store routines
2009-11-16 15:23:16 -08:00
Ian Romanick
eb437fabe0
AL1616: Add formats for GL_LUMINANCE16_ALPHA16 textures
2009-11-16 15:23:16 -08:00
Ian Romanick
5fb07a4046
AL1616: Add macros to pack two GLushorts into a texel
2009-11-16 15:23:16 -08:00
Jakob Bornecrantz
cb060f3b98
st/xorg: Fix comp alpha code and deal with luminance masks
...
There are two fixes in here one is a one liner that fixes
component alpha logic. The other deals better with luminance
formats used for masks, sources not yet implemented.
Fixes component alpha text and icons in gnome. There are a one
or two cases that this code misses. Like if src_luminance is set
but no mask image is given.
2009-11-16 23:33:45 +01:00
Jakob Bornecrantz
5438ee3ecf
st/xorg: Incase of format missmatch swizzle channels and set alpha
...
This path is only hit for icons in gnome so far
2009-11-16 23:33:44 +01:00
Alex Deucher
d683acb101
r600: don't force Z order
...
Let the hw decide (early vs late Z)
fixes fdo bug 25092
Signed-off-by: Alex Deucher <alexdeucher@gmail.com>
2009-11-16 15:03:48 -05:00
Brian Paul
f549f4c4b6
mesa: remove unused vertex array driver hooks
2009-11-16 11:33:44 -07:00
Brian Paul
652828ec0e
mesa: check BaseLevel, MaxLevel in _mesa_GenerateMipmapEXT()
2009-11-16 08:25:17 -07:00
Brian Paul
a719395b45
mesa: use _mesa_get_current_tex_object()
2009-11-16 08:21:28 -07:00
Brian Paul
ecb03d75a2
mesa: added another check in check_gen_mipmap()
...
We don't need to call ctx->Driver.GenerateMipmap() if we're updating
a texture level >= MAX_LEVEL.
2009-11-16 08:18:03 -07:00
Michel Dänzer
d3a37d93ab
st/xorg: Only reference new picture formats when they're defined.
...
Fixes http://bugs.freedesktop.org/show_bug.cgi/?id=25094 .
2009-11-16 11:59:39 +01:00
Brian Paul
afae49cc15
st/mesa: comments for st_draw.c
2009-11-15 16:22:53 -07:00
Brian Paul
4581f70578
st/egl: add some basic comments
2009-11-15 16:22:52 -07:00
Francisco Jerez
abefd7dcdf
nv20: Fix build for the last nouveau_class.h changes.
...
Signed-off-by: Francisco Jerez <currojerez@riseup.net>
Signed-off-by: Pekka Paalanen <pq@iki.fi>
2009-11-15 18:20:19 +02:00
Francisco Jerez
ed9c4933af
nv10: Fix build for the last nouveau_class.h changes.
...
Signed-off-by: Francisco Jerez <currojerez@riseup.net>
Signed-off-by: Pekka Paalanen <pq@iki.fi>
2009-11-15 18:20:19 +02:00
Eric Anholt
57f40b1837
i965: Share OPCODE_TXB between brw_wm_emit.c and brw_wm_glsl.c
...
This should fix TXB on G45 and older in the GLSL case.
2009-11-13 16:04:13 -08:00
Eric Anholt
1be0efcbdc
i965: Share OPCODE_TEX between brw_wm_emit.c and brw_wm_glsl.c.
...
New comments should explain some of the confusion about how this message
works.
2009-11-13 16:04:10 -08:00