mesa.git
17 years agoTweak the shell scripting for descending into and building subdirs.
Brian [Wed, 9 May 2007 22:22:53 +0000 (16:22 -0600)]
Tweak the shell scripting for descending into and building subdirs.

In general, use this:
@for dir in $(SUBDIRS) ; do \
if [ -d $$dir ] ; then \
(cd $$dir && $(MAKE)) || exit 1; \
fi \
done

Basically, silently skip missing subdirs but generate an error and stop if
there's a compilation or install problem.
This was done inconsistantly before.  In once case, a missing subdir was
causing us to go into an infinte loop!

17 years agor300: Cleaned up radeon_context.h slightly; mostly Indent.
Oliver McFadden [Wed, 9 May 2007 21:06:28 +0000 (21:06 +0000)]
r300: Cleaned up radeon_context.h slightly; mostly Indent.

17 years agor300: radeon_span.h is now common code; radeon_span.c still needs some work.
Oliver McFadden [Wed, 9 May 2007 20:52:09 +0000 (20:52 +0000)]
r300: radeon_span.h is now common code; radeon_span.c still needs some work.

17 years agor300: Renamed the R300 memory manager from "radeon" to "r300"; it's R300
Oliver McFadden [Wed, 9 May 2007 20:49:49 +0000 (20:49 +0000)]
r300: Renamed the R300 memory manager from "radeon" to "r300"; it's R300
specific.

17 years agor300: Indented radeon_span.h
Oliver McFadden [Wed, 9 May 2007 20:41:27 +0000 (20:41 +0000)]
r300: Indented radeon_span.h

17 years agor300: Further reduced the radeon_span.c diff.
Oliver McFadden [Wed, 9 May 2007 20:36:48 +0000 (20:36 +0000)]
r300: Further reduced the radeon_span.c diff.

17 years agor300: I have no idea why this was forced on, but it seems to work fine when
Oliver McFadden [Wed, 9 May 2007 19:30:59 +0000 (19:30 +0000)]
r300: I have no idea why this was forced on, but it seems to work fine when
restored to the previous behaviour.

17 years agor300: Removed the dangerous R300_SPAN_DISABLE_LOCKING flag.
Oliver McFadden [Wed, 9 May 2007 19:24:59 +0000 (19:24 +0000)]
r300: Removed the dangerous R300_SPAN_DISABLE_LOCKING flag.

Enabling R300_SPAN_DISABLE_LOCKING would probably cause more lockups; I think
there are a couple of other little bugs in this code, too. It's best to remove
it.

17 years agor300: Removed a bit of disabled code.
Oliver McFadden [Wed, 9 May 2007 18:44:56 +0000 (18:44 +0000)]
r300: Removed a bit of disabled code.

17 years agor300: Don't need to include the deprecated r300_program.h in some files.
Oliver McFadden [Wed, 9 May 2007 18:37:46 +0000 (18:37 +0000)]
r300: Don't need to include the deprecated r300_program.h in some files.

The only file that still requires r300_program.h is r300_ioctl.c; and it should
use the new defines in r300_reg.h!

17 years agor300; Indent would destroy r300_reg.h, so add *INDENT-OFF*.
Oliver McFadden [Wed, 9 May 2007 18:31:04 +0000 (18:31 +0000)]
r300; Indent would destroy r300_reg.h, so add *INDENT-OFF*.

17 years agor300: Added a few more Doxygen comments.
Christoph Bill [Wed, 9 May 2007 18:25:12 +0000 (18:25 +0000)]
r300: Added a few more Doxygen comments.

17 years agor300: Added some Doxygen comments.
Christoph Bill [Wed, 9 May 2007 18:24:06 +0000 (18:24 +0000)]
r300: Added some Doxygen comments.

17 years agor300: Converted "rp" variables (r300_fragment_program) to "fp".
Oliver McFadden [Wed, 9 May 2007 18:14:42 +0000 (18:14 +0000)]
r300: Converted "rp" variables (r300_fragment_program) to "fp".

17 years agor300: Don't need to sleep here; might cause performance problems the first time.
Oliver McFadden [Wed, 9 May 2007 18:11:38 +0000 (18:11 +0000)]
r300: Don't need to sleep here; might cause performance problems the first time.

17 years agor300: Removed the obsolete GLX_DIRECT_RENDERING define.
Oliver McFadden [Wed, 9 May 2007 18:07:16 +0000 (18:07 +0000)]
r300: Removed the obsolete GLX_DIRECT_RENDERING define.

17 years agor300: Further reduced the diff between radeon_span.[ch].
Oliver McFadden [Wed, 9 May 2007 18:06:10 +0000 (18:06 +0000)]
r300: Further reduced the diff between radeon_span.[ch].

17 years agor300: Indented both copies of radeon_span.[ch] in preparation for merging.
Oliver McFadden [Wed, 9 May 2007 18:01:43 +0000 (18:01 +0000)]
r300: Indented both copies of radeon_span.[ch] in preparation for merging.

17 years agor300: Removed the deprecated VTXFMT code.
Oliver McFadden [Wed, 9 May 2007 16:10:08 +0000 (16:10 +0000)]
r300: Removed the deprecated VTXFMT code.

This was okayed by Jerome Glisse and Keith Whitwell on the dri-devel IRC channel
and list, respectively.

17 years agor300: The empty check_space doesn't and never has done anything; removed it.
Oliver McFadden [Wed, 9 May 2007 15:57:30 +0000 (15:57 +0000)]
r300: The empty check_space doesn't and never has done anything; removed it.

17 years agor300: Fix a couple of static errors.
Oliver McFadden [Wed, 9 May 2007 15:38:18 +0000 (15:38 +0000)]
r300: Fix a couple of static errors.

17 years agor300: Fixed indenting from previous commit
Oliver McFadden [Wed, 9 May 2007 15:28:38 +0000 (15:28 +0000)]
r300: Fixed indenting from previous commit
d28f6d91760374e2eb71b541b0f259f81dd73c69.

17 years agor300: Added R300_PRIM_NUM_VERTICES_MASK suggested by Jerome Glisse.
Oliver McFadden [Wed, 9 May 2007 15:21:13 +0000 (15:21 +0000)]
r300: Added R300_PRIM_NUM_VERTICES_MASK suggested by Jerome Glisse.

17 years agor300: Fixed some more function names.
Oliver McFadden [Wed, 9 May 2007 15:19:05 +0000 (15:19 +0000)]
r300: Fixed some more function names.

Note there might be some calls to the old function names in conditionally
disabled code, but I think I've got them all.

17 years agor300: Changed r300_run_vb_render calls to r300RunRender in some conditionally
Oliver McFadden [Wed, 9 May 2007 15:07:34 +0000 (15:07 +0000)]
r300: Changed r300_run_vb_render calls to r300RunRender in some conditionally
disabled code.

17 years agor300: Added a "not implemented yet" comment back.
Oliver McFadden [Wed, 9 May 2007 14:45:42 +0000 (14:45 +0000)]
r300: Added a "not implemented yet" comment back.

17 years agoMerge branch 'master' of git://anongit.freedesktop.org/git/mesa/mesa
Oliver McFadden [Wed, 9 May 2007 14:23:22 +0000 (14:23 +0000)]
Merge branch 'master' of git://anongit.freedesktop.org/git/mesa/mesa

17 years agor300: Last of the indent changes. :)
Oliver McFadden [Wed, 9 May 2007 14:19:45 +0000 (14:19 +0000)]
r300: Last of the indent changes. :)

17 years agoadd pointers to git repo for drm/libpciaccess, replace & with &
Brian [Wed, 9 May 2007 14:17:57 +0000 (08:17 -0600)]
add pointers to git repo for drm/libpciaccess, replace & with &

17 years agor300: Indented r300_cmdbuf.[ch].
Oliver McFadden [Wed, 9 May 2007 14:17:16 +0000 (14:17 +0000)]
r300: Indented r300_cmdbuf.[ch].

17 years agor300: Indented r300_state.[ch].
Oliver McFadden [Wed, 9 May 2007 14:12:34 +0000 (14:12 +0000)]
r300: Indented r300_state.[ch].

17 years agor300: Indented r300_texmem.[ch].
Oliver McFadden [Wed, 9 May 2007 14:11:17 +0000 (14:11 +0000)]
r300: Indented r300_texmem.[ch].

17 years agor300: Indented r300_texstate.[ch]
Oliver McFadden [Wed, 9 May 2007 14:09:35 +0000 (14:09 +0000)]
r300: Indented r300_texstate.[ch]

17 years agoClean-up in I830AllocVidMem(), s/int/unsigned long/ for ret variable.
Brian [Wed, 9 May 2007 14:07:10 +0000 (08:07 -0600)]
Clean-up in I830AllocVidMem(), s/int/unsigned long/ for ret variable.

17 years agoCheck that texture units/samplers specified with glUniform1i() are legal.
Brian [Wed, 9 May 2007 14:04:32 +0000 (08:04 -0600)]
Check that texture units/samplers specified with glUniform1i() are legal.

17 years agor300: Indented r300_tex.[ch].
Oliver McFadden [Wed, 9 May 2007 13:59:28 +0000 (13:59 +0000)]
r300: Indented r300_tex.[ch].

17 years agor300: Indented r300_context.[ch].
Oliver McFadden [Wed, 9 May 2007 13:55:14 +0000 (13:55 +0000)]
r300: Indented r300_context.[ch].

17 years agor300: Removed the unused immediate vertices mode macro.
Oliver McFadden [Wed, 9 May 2007 04:30:16 +0000 (04:30 +0000)]
r300: Removed the unused immediate vertices mode macro.

Immediate vertices mode hasn't been supported since early CVS versions of the
R300 driver.

17 years agor300: Removed a disabled/obsolete e32 in the AOS function.
Oliver McFadden [Wed, 9 May 2007 04:27:31 +0000 (04:27 +0000)]
r300: Removed a disabled/obsolete e32 in the AOS function.

17 years agor300: Removed some disabled R200 code from the R300 driver.
Oliver McFadden [Wed, 9 May 2007 04:25:27 +0000 (04:25 +0000)]
r300: Removed some disabled R200 code from the R300 driver.

17 years agor300: Don't indent the tables in r300_texstate.c.
Oliver McFadden [Wed, 9 May 2007 04:20:35 +0000 (04:20 +0000)]
r300: Don't indent the tables in r300_texstate.c.

17 years agor300: Indented r300_vertprog.[ch].
Oliver McFadden [Wed, 9 May 2007 04:12:04 +0000 (04:12 +0000)]
r300: Indented r300_vertprog.[ch].

17 years agor300: Indented r300_fragprog.[ch].
Oliver McFadden [Wed, 9 May 2007 04:08:27 +0000 (04:08 +0000)]
r300: Indented r300_fragprog.[ch].

17 years agor300: Cleaned up the R300 Makefile.
Oliver McFadden [Wed, 9 May 2007 03:44:40 +0000 (03:44 +0000)]
r300: Cleaned up the R300 Makefile.

17 years agor300: Corrected a couple of "control reaches end of non-void function" warnings.
Oliver McFadden [Wed, 9 May 2007 03:40:06 +0000 (03:40 +0000)]
r300: Corrected a couple of "control reaches end of non-void function" warnings.

17 years agor300: Corrected an error in r300_vertprog.c.
Oliver McFadden [Wed, 9 May 2007 03:38:45 +0000 (03:38 +0000)]
r300: Corrected an error in r300_vertprog.c.

Cannot use _mesa_warning here because we don't have a context pointer; perhaps
R300 specific warning and error functions are needed.

17 years agor300: Corrected the exit codes for consistency; they are all -1 for error now.
Oliver McFadden [Wed, 9 May 2007 03:36:28 +0000 (03:36 +0000)]
r300: Corrected the exit codes for consistency; they are all -1 for error now.

The one exception is 300FlushCmdBuf.

17 years agor300: Converted exit calls to _mesa_exit calls.
Oliver McFadden [Wed, 9 May 2007 03:32:15 +0000 (03:32 +0000)]
r300: Converted exit calls to _mesa_exit calls.

Note that the exit codes are inconsistent and should be fixed.

17 years agor300: Converted a few fprintf calls to _mesa_warning calls.
Oliver McFadden [Wed, 9 May 2007 03:25:33 +0000 (03:25 +0000)]
r300: Converted a few fprintf calls to _mesa_warning calls.

17 years agor300: Added a warning when texture state update fails.
Oliver McFadden [Wed, 9 May 2007 03:22:37 +0000 (03:22 +0000)]
r300: Added a warning when texture state update fails.

17 years agor300: Removed some obsolete code from r300_tex.c.
Oliver McFadden [Wed, 9 May 2007 03:18:14 +0000 (03:18 +0000)]
r300: Removed some obsolete code from r300_tex.c.

17 years agomesa: Added Vim swap files to .gitignore.
Oliver McFadden [Wed, 9 May 2007 03:14:08 +0000 (03:14 +0000)]
mesa: Added Vim swap files to .gitignore.

17 years agor300: Updated .gitignore.
Oliver McFadden [Wed, 9 May 2007 03:12:51 +0000 (03:12 +0000)]
r300: Updated .gitignore.

17 years agor300: Added the Linux Kernel indent script.
Oliver McFadden [Wed, 9 May 2007 03:12:22 +0000 (03:12 +0000)]
r300: Added the Linux Kernel indent script.

17 years agor300: Indented r300_state.[ch].
Oliver McFadden [Wed, 9 May 2007 02:59:11 +0000 (02:59 +0000)]
r300: Indented r300_state.[ch].

17 years agor300: Indented r300_emit.h.
Oliver McFadden [Wed, 9 May 2007 02:52:37 +0000 (02:52 +0000)]
r300: Indented r300_emit.h.

17 years agor300: Indented r300_cmdbuf.[ch].
Oliver McFadden [Wed, 9 May 2007 02:51:13 +0000 (02:51 +0000)]
r300: Indented r300_cmdbuf.[ch].

17 years agor300: Indented r300_shader.[ch].
Oliver McFadden [Wed, 9 May 2007 02:50:13 +0000 (02:50 +0000)]
r300: Indented r300_shader.[ch].

17 years agor300: Indented r300_maos.[ch].
Oliver McFadden [Wed, 9 May 2007 02:49:14 +0000 (02:49 +0000)]
r300: Indented r300_maos.[ch].

17 years agor300: Indented r300_ioctl.[ch].
Oliver McFadden [Wed, 9 May 2007 02:46:57 +0000 (02:46 +0000)]
r300: Indented r300_ioctl.[ch].

17 years agor300: Removed the obsolete pfs_reg_t type from r300_fragprog.h.
Oliver McFadden [Wed, 9 May 2007 02:41:38 +0000 (02:41 +0000)]
r300: Removed the obsolete pfs_reg_t type from r300_fragprog.h.

17 years agor300: Use an array for the vertex program sources and corrected an error from
Oliver McFadden [Wed, 9 May 2007 02:35:07 +0000 (02:35 +0000)]
r300: Use an array for the vertex program sources and corrected an error from
4960af08ad50a3a6ea039145de2698234c2cc892.

17 years agor300: Removed the ugly CARD32 type.
Oliver McFadden [Wed, 9 May 2007 02:27:08 +0000 (02:27 +0000)]
r300: Removed the ugly CARD32 type.

17 years agor300: Renamed vertex_shader.h to r300_vertprog.h
Oliver McFadden [Wed, 9 May 2007 02:24:59 +0000 (02:24 +0000)]
r300: Renamed vertex_shader.h to r300_vertprog.h

17 years agor300: Removed obsolete pixel_shader.h header file.
Oliver McFadden [Wed, 9 May 2007 02:18:29 +0000 (02:18 +0000)]
r300: Removed obsolete pixel_shader.h header file.

17 years agor300: Renamed the VBO functions to the R300 name format.
Oliver McFadden [Tue, 8 May 2007 21:04:57 +0000 (21:04 +0000)]
r300: Renamed the VBO functions to the R300 name format.

17 years agoremove some debug code
Brian [Tue, 8 May 2007 20:08:45 +0000 (14:08 -0600)]
remove some debug code

17 years agospecial case for -pthread (bug 10876)
Brian [Tue, 8 May 2007 20:03:04 +0000 (14:03 -0600)]
special case for -pthread (bug 10876)

17 years agoa somewhat nicer demo w/ command line options
Brian [Tue, 8 May 2007 19:48:52 +0000 (13:48 -0600)]
a somewhat nicer demo w/ command line options

17 years agor300: Removed some deprecated code from r300_context.c and corrected an unused
Oliver McFadden [Tue, 8 May 2007 19:46:25 +0000 (19:46 +0000)]
r300: Removed some deprecated code from r300_context.c and corrected an unused
variable warning in r300_render.c.

17 years agor300: Last few r300_render.c clean up.
Oliver McFadden [Tue, 8 May 2007 19:38:44 +0000 (19:38 +0000)]
r300: Last few r300_render.c clean up.

17 years agor300: Merged some comments into the Doxygen documentation.
Oliver McFadden [Tue, 8 May 2007 19:35:36 +0000 (19:35 +0000)]
r300: Merged some comments into the Doxygen documentation.

17 years agor300: Cleaned up r300_render.c using Indent with appropriate options.
Oliver McFadden [Tue, 8 May 2007 19:31:30 +0000 (19:31 +0000)]
r300: Cleaned up r300_render.c using Indent with appropriate options.

This corrects the mess of space and tab indenting that existed in this file, and
probably others. The diff is actually very small if you use an external diff
program and ignore whitespace.

17 years agor300: General render clean up; added some Doxygen documentation, too.
Oliver McFadden [Tue, 8 May 2007 19:22:15 +0000 (19:22 +0000)]
r300: General render clean up; added some Doxygen documentation, too.

17 years agor300: Moved the pipeline stages together for readability.
Oliver McFadden [Tue, 8 May 2007 18:47:26 +0000 (18:47 +0000)]
r300: Moved the pipeline stages together for readability.

17 years agor300: Print the OpenGL define instead of a 2-digit char code in the warning.
Oliver McFadden [Tue, 8 May 2007 18:43:56 +0000 (18:43 +0000)]
r300: Print the OpenGL define instead of a 2-digit char code in the warning.

17 years agor300: Clean up the vertex buffer emission code and reduced code duplication.
Oliver McFadden [Tue, 8 May 2007 18:28:04 +0000 (18:28 +0000)]
r300: Clean up the vertex buffer emission code and reduced code duplication.

I tested both the unoptimized and optimized versions with Quake 3 Arena; there
are no problems.

17 years agor300: Cleaned up a lot of cruft in r300_render.c.
Oliver McFadden [Tue, 8 May 2007 18:05:10 +0000 (18:05 +0000)]
r300: Cleaned up a lot of cruft in r300_render.c.

17 years agoi915/miniglx: remove unused code
Dave Airlie [Tue, 8 May 2007 00:53:43 +0000 (10:53 +1000)]
i915/miniglx: remove unused code

17 years agominiglx: fixup use of create windows x and y coordinates
Dave Airlie [Tue, 8 May 2007 00:51:44 +0000 (10:51 +1000)]
miniglx: fixup use of create windows x and y coordinates

This makes miniglx take not of the x and y from XCreateWindow

17 years agominiglx/glut: should use the x/y pos to create window
Dave Airlie [Tue, 8 May 2007 00:49:31 +0000 (10:49 +1000)]
miniglx/glut: should use the x/y pos to create window

This allows moving miniglx glut windows around the framebuffer

17 years agobetter comments for _mesa_debug(), _mesa_warning(), etc
Brian [Mon, 7 May 2007 20:13:23 +0000 (14:13 -0600)]
better comments for _mesa_debug(), _mesa_warning(), etc

17 years agoradeon: enable xpress chipsets
Dave Airlie [Sun, 6 May 2007 21:06:08 +0000 (07:06 +1000)]
radeon: enable xpress chipsets

glxgears and googleearth now run so that seems like a good start

Thanks to Aapo Tahkola for doing the 3D work on this so far, I got lost
after the GART changes.

17 years agors480: fix secondary color for real this time
Aapo Tahkola [Sun, 6 May 2007 16:25:45 +0000 (19:25 +0300)]
rs480: fix secondary color for real this time

17 years agoMerge branch 'master' of git+ssh://aapot@git.freedesktop.org/git/mesa/mesa
Aapo Tahkola [Sun, 6 May 2007 16:19:16 +0000 (19:19 +0300)]
Merge branch 'master' of git+ssh://aapot@git.freedesktop.org/git/mesa/mesa

17 years agors480: fix textures and secondary color(?). clipping is still busted. tested on r480
Aapo Tahkola [Sun, 6 May 2007 16:18:10 +0000 (19:18 +0300)]
rs480: fix textures and secondary color(?). clipping is still busted. tested on r480

17 years agor300: fix broken vbos
Aapo Tahkola [Sun, 6 May 2007 16:10:39 +0000 (19:10 +0300)]
r300: fix broken vbos

17 years agor300: Added R300_AA_DISABLE for R300_GB_AA_CONFIG.
Oliver McFadden [Sun, 6 May 2007 12:09:42 +0000 (12:09 +0000)]
r300: Added R300_AA_DISABLE for R300_GB_AA_CONFIG.

17 years agor300: Removed more deprecated state code that is now set in separate functions.
Oliver McFadden [Sun, 6 May 2007 11:56:36 +0000 (11:56 +0000)]
r300: Removed more deprecated state code that is now set in separate functions.

17 years agor300: R300_ZS_... is now set in separate functions; removed the deprecated code.
Oliver McFadden [Sun, 6 May 2007 11:54:00 +0000 (11:54 +0000)]
r300: R300_ZS_... is now set in separate functions; removed the deprecated code.

17 years agor300: Point size is now set in a separate function; removed the deprecated code.
Oliver McFadden [Sun, 6 May 2007 11:52:03 +0000 (11:52 +0000)]
r300: Point size is now set in a separate function; removed the deprecated code.

17 years agor300: Use the defined values for R300_VAP_CNTL_STATUS.
Oliver McFadden [Sun, 6 May 2007 11:36:24 +0000 (11:36 +0000)]
r300: Use the defined values for R300_VAP_CNTL_STATUS.

17 years agor300: fix primary color on rs480
Aapo Tahkola [Sun, 6 May 2007 11:28:23 +0000 (14:28 +0300)]
r300: fix primary color on rs480

17 years agodon't use hw to perform vertex transform etc. when using swtcl. This for compatibilit...
Aapo Tahkola [Sat, 5 May 2007 14:07:46 +0000 (17:07 +0300)]
don't use hw to perform vertex transform etc. when using swtcl. This for compatibility with vertex programs and the fact that swtcl very rarely gets hit with tcl capable hw.

17 years agonouveau: disable nouveau build by default
Dave Airlie [Sat, 5 May 2007 05:43:01 +0000 (15:43 +1000)]
nouveau: disable nouveau build by default

Until this is API/ABI stable building it by default isn't a good idea.

17 years agoadd </ol> tag
Brian [Sat, 5 May 2007 00:32:02 +0000 (18:32 -0600)]
add </ol> tag

17 years agoMakefile clean-ups for miniglx.
Brian [Sat, 5 May 2007 00:27:12 +0000 (18:27 -0600)]
Makefile clean-ups for miniglx.

17 years agoAssorted miniglx updates.
Brian [Sat, 5 May 2007 00:26:41 +0000 (18:26 -0600)]
Assorted miniglx updates.

17 years agodocument R300 bug fix 10848
Brian [Thu, 3 May 2007 19:52:33 +0000 (13:52 -0600)]
document R300 bug fix 10848

17 years agofix some matrix/state token indexing bugs (see bug 10848)
Brian [Thu, 3 May 2007 18:33:25 +0000 (12:33 -0600)]
fix some matrix/state token indexing bugs (see bug 10848)