Commit graph

21233 commits

Author SHA1 Message Date
Jakob Bornecrantz
b96d50da8b Revert "mesa: added new linux-gallium and linux-gallium-debug configs"
This reverts commit abbe96cb6e.

It only reverts parts of the commit the other parts where related to
libmesagallium changes.
2009-02-10 16:22:19 +01:00
Michal Krol
2644985367 nv40: Fix build -- rename Size to NrTokens. 2009-02-10 15:18:32 +01:00
Michal Krol
844034dee5 nv30: Fix build -- rename Size to NrTokens. 2009-02-10 15:18:19 +01:00
Michal Krol
adc6847260 nv20: Fix build -- rename Size to NrTokens. 2009-02-10 15:18:03 +01:00
Michal Krol
276de3ffcf brw: Fix build -- rename Size to NrTokens. 2009-02-10 15:17:41 +01:00
Michal Krol
0020e1d108 i915: Fix build -- rename Size to NrTokens. 2009-02-10 15:17:17 +01:00
Michal Krol
a872b518c9 gallivm: Fix build -- rename Size to NrTokens. 2009-02-10 15:16:35 +01:00
Michal Krol
e3028baff2 draw: Fix build -- rename Size to NrTokens. 2009-02-10 15:16:00 +01:00
Michal Krol
5ecd0b0890 tgsi: Fix build -- rename Size to NrTokens. 2009-02-10 15:14:31 +01:00
Michal Krol
bf3930453c gallium: Rename Size member of TGSI token to NrTokens.
Driver writers often got confused and assumed Size to be
the number of immediate values in Immediate declaration.
2009-02-10 15:12:34 +01:00
Keith Whitwell
a88e2544ee vmw/icd: remove bogus current_context value 2009-02-10 14:03:43 +00:00
José Fonseca
dc6cc4f9da mesa: Compare formats using nominal bytes per pixel.
This is a temporary fix which works for the formats we care so far. The
real fix would be abandon the concept "nominal bytes per pixel" entirely
in Mesa, and use macropixels instead, as done in gallium interfaces
already.
2009-02-10 13:40:00 +00:00
Michel Dänzer
eaf15db895 gallium: Fixups for driCreateConfigs MSAA support.
Add the MSAA samples array or make sure its contents are initialized.
2009-02-10 13:47:49 +01:00
José Fonseca
67e988a06c wgl: Fix null pointer reference. 2009-02-10 11:51:47 +00:00
José Fonseca
9fb9ee9d24 stw: Hack for applications which use wglSetPixelFormat instead of SetPixelFormat. 2009-02-10 11:51:47 +00:00
José Fonseca
5b0807b72f glut: Use the official WGL functions.
Especially using wglGetPixelFormat instead of GetPixelFormat causes
problems with opengl32.dll and drivers that not hack around this issue.
2009-02-10 11:51:46 +00:00
José Fonseca
aeed92952e glut: DESCRIPTION .def clause deprecated. 2009-02-10 11:51:46 +00:00
José Fonseca
42523a83b3 wgl: s/0x%p/%p/g
Rather not have 0x prefix, than 0x0x in certain platforms.
2009-02-10 11:51:46 +00:00
Brian
028780a809 demos: remove OSMESA stuff from Makefile 2009-02-09 19:40:10 -07:00
Benjamin Close
17fe478085 autogen: Make sure MAKEFLAGS is not set before running autoreconf
Without this the "w" flag may be set which causes the version
to be incorrectly to be obtains in configure.ac causing configure
to fail miserably
2009-02-10 11:58:11 +10:30
Brian Paul
7e0bc2eb8d mesa: add x86/rtasm/x86sse.c to fix linux-x86 build 2009-02-09 15:41:06 -07:00
Roland Scheidegger
93da69def4 mesa: fixes for srgb formats
swizzling in fetch/store srgba/sargb functions fixed (consistent with
equivalent non-srgb formats now).
2009-02-09 23:18:07 +01:00
Roland Scheidegger
cb3c54ea86 fix _mesa_get_teximage for srgb textures 2009-02-09 23:17:43 +01:00
Brian Paul
aad3f546a0 mesa: avoid setting texObj->_Complete = GL_FALSE when there's no state change
Avoid a little bit of unneeded state validation and fixes a bug where the
texture complete flags was set to false, but we didn't signal _NEW_TEXTURE.

Fixes piglit tex1d-2dborder failure.
2009-02-09 14:00:47 -07:00
Brian Paul
37c768b36a mesa: add no-change testing for a few more texture parameters 2009-02-09 14:00:47 -07:00
Brian Paul
88f3656ea7 swrast: use ASSIGN_4V() macro 2009-02-09 14:00:47 -07:00
Brian Paul
7eb5a2892d mesa: replace _mesa_unreference_framebuffer() with _mesa_reference_framebuffer() 2009-02-09 14:00:47 -07:00
Brian Paul
d52294439c mesa: replace _mesa_unreference_framebuffer() with _mesa_reference_framebuffer() 2009-02-09 14:00:47 -07:00
Brian Paul
60b3fe6c19 i965: need to disable current shader, if any, in intel_clear_tris()
Fixes bad background in all the progs/glsl/ tests.
2009-02-09 12:12:29 -07:00
Brian Paul
e13593678f re-add MSAA support
(cherry picked from commit f7d80aa006)

This also involved adding the new MSAA fields to driCreateConfigs().

Also, re-add prog_instructions->Sampler field for i965 driver.  Will
have to revisit that.
2009-02-09 11:16:20 -07:00
José Fonseca
123299546f indices: Fix typo. 2009-02-09 18:11:05 +00:00
Brian Paul
22c6c1eaad cell: update linux-cell config 2009-02-09 10:42:34 -07:00
Brian Paul
2438161823 mesa: build/use libmesagallium.a for gallium builds
This contains the core mesa code but excludes things not needed for gallium
such as tnl/, swrast/, swrast_setup/, etc.
2009-02-09 10:37:38 -07:00
Brian Paul
abbe96cb6e mesa: added new linux-gallium and linux-gallium-debug configs
Also, remove gallium-related things from configs/default.  They're in
linux-gallium now.

So the default builds are the same as they have been for Mesa/master.
2009-02-09 10:17:58 -07:00
Brian Paul
3c15e02783 softpipe: add null ptr check in softpipe_map_constant_buffers()
Fixes segfault regression in progs/glsl/identity.c
2009-02-09 10:12:11 -07:00
Brian Paul
87e44d9003 mesa: prefix #includes with main/ 2009-02-09 09:54:52 -07:00
Brian Paul
71e64fc30b swrast: fix typo: s/drapix/drawpix/ 2009-02-09 09:54:33 -07:00
Brian Paul
4fece21315 mesa: remove old 'sources' file in favor of 'sources.mak' 2009-02-09 09:53:58 -07:00
Brian Paul
e97681c7f5 mesa: merge gallium-0.2 into gallium-master-merge
Merge commit 'origin/gallium-0.2' into gallium-master-merge

Conflicts:

	Makefile
	docs/relnotes-7.4.html
	docs/relnotes.html
	src/mesa/drivers/dri/i965/brw_wm.h
	src/mesa/main/imports.c
	src/mesa/main/mtypes.h
	src/mesa/main/texcompress.c
	src/mesa/main/texenvprogram.c
	src/mesa/main/version.h
	src/mesa/vbo/vbo_exec_api.c
	src/mesa/vbo/vbo_save_draw.c
2009-02-09 09:22:22 -07:00
Siddhartha Chaudhuri
1a46c8a062 mesa: autoconf fixes for OS X
See bug report 17566.
2009-02-09 07:59:32 -07:00
Brian Paul
4900269819 mesa: rework _mesa_reference_framebuffer() to look like _mesa_reference_renderbuffer()
_mesa_unreference_framebuffer() is deprecated since _mesa_reference_framebuffer(ptr, NULL)
can be used instead.
2009-02-09 07:55:08 -07:00
Patrice Mandin
b907d4cd8f nouveau: include and calc offset before changing dimensions for next level 2009-02-08 17:04:09 +01:00
Patrice Mandin
ea7ca7607a nouveau: upload and swizzle each mipmap level in turn 2009-02-08 17:04:09 +01:00
Corbin Simpson
5425c4aa28 r300: Accidentally removed a pipe_buffer_reference that should be there. 2009-02-08 02:03:29 -08:00
Corbin Simpson
360e700a43 r300: Add SW TCL paths for clear.
This should make things work for people on RSxxx chipsets.
2009-02-08 01:07:03 -08:00
Corbin Simpson
ea3398cf33 r300: Update to match pipe_surface changes. 2009-02-08 01:01:26 -08:00
Brian Paul
19a1bc8270 cell: remove unused var 2009-02-07 13:05:38 -07:00
Brian Paul
91948cd1a2 cell: compile fix: many updates to cell texture code for new surface mapping
The Cell texture code really needs a thorough inspection and clean-up someday...
2009-02-07 13:04:53 -07:00
Brian Paul
2473ded886 softpipe: simplify an assertion 2009-02-07 13:03:24 -07:00
Brian Paul
b59117a697 cell: compile fix: no-op xlib_create_brw_screen() for Cell build 2009-02-07 13:02:27 -07:00