Brian [Wed, 20 Jun 2007 01:19:31 +0000 (19:19 -0600)]
Re-org of surface/framebuffer state.
We should be able to render to any depth/format of X window now.
Brian [Wed, 20 Jun 2007 01:17:48 +0000 (19:17 -0600)]
don't request GLUT_ALPHA
Brian [Tue, 19 Jun 2007 14:45:34 +0000 (08:45 -0600)]
just use regular malloc(), free(), memcpy()
Brian [Tue, 19 Jun 2007 14:43:05 +0000 (08:43 -0600)]
add point/line/polygon state
Brian [Mon, 18 Jun 2007 23:54:38 +0000 (17:54 -0600)]
Added alpha test state.
Brian [Mon, 18 Jun 2007 23:53:09 +0000 (17:53 -0600)]
Define just one set of PIPE_FUNC_LESS, GREATER, EQUAL, etc tokens.
Used for depth test, alpha test, stencil test, shadow test, etc.
Brian [Mon, 18 Jun 2007 12:57:36 +0000 (06:57 -0600)]
change clear color
Brian [Fri, 15 Jun 2007 16:57:44 +0000 (10:57 -0600)]
s/PRIM_H/SP_STATE_H/
Brian [Fri, 15 Jun 2007 16:55:12 +0000 (10:55 -0600)]
Added st_update_framebuffer struct/object.
Brian [Fri, 15 Jun 2007 16:54:08 +0000 (10:54 -0600)]
framebuffer state
Brian [Fri, 15 Jun 2007 16:50:48 +0000 (10:50 -0600)]
In softpipe_set_viewport() use ordinary (struct) assignment to update softpipe->viewport.
The previous memcpy() was incorrect since it only copied 4 bytes instead of 32.
With struct assignment we avoid data size errors.
Brian [Fri, 15 Jun 2007 15:51:53 +0000 (09:51 -0600)]
initial framebuffer state
Brian [Fri, 15 Jun 2007 15:51:27 +0000 (09:51 -0600)]
framebuffer state
Keith Whitwell [Thu, 14 Jun 2007 17:25:10 +0000 (18:25 +0100)]
Add GLUT_ALPHA for softpipe
Keith Whitwell [Thu, 14 Jun 2007 17:23:43 +0000 (18:23 +0100)]
Rename directories again?!
Some git wierdness going on.
Keith Whitwell [Thu, 14 Jun 2007 17:11:48 +0000 (18:11 +0100)]
Renamed softpipe directories and files to something less confusing.
softpipe/state_tracker --> state_tracker/
softpipe/ --> pipe/
softpipe/generic --> pipe/softpipe/
I don't think pipe is a great name, but I disliked all the others too.
Luckily it's fairly easy to rename with git, so this can be revisited
later.
Keith Whitwell [Thu, 14 Jun 2007 14:18:27 +0000 (15:18 +0100)]
Small optimization for line drawing.
And some comments on point sprites.
Keith Whitwell [Wed, 13 Jun 2007 14:37:52 +0000 (15:37 +0100)]
Remove some dead code.
Brian [Tue, 12 Jun 2007 14:47:49 +0000 (08:47 -0600)]
simple line drawing code
Brian [Wed, 30 May 2007 22:27:17 +0000 (16:27 -0600)]
added st_atom_depth.c
Brian [Wed, 30 May 2007 22:26:55 +0000 (16:26 -0600)]
sketch out texture sampler state
Brian [Wed, 30 May 2007 22:10:31 +0000 (16:10 -0600)]
comments, clean-up, alphabetize members
Brian [Wed, 30 May 2007 22:07:39 +0000 (16:07 -0600)]
added depth(Z) state support
Brian [Wed, 30 May 2007 22:07:27 +0000 (16:07 -0600)]
depth(Z) state
Brian [Mon, 28 May 2007 22:13:17 +0000 (16:13 -0600)]
implement point rendering
Brian [Fri, 25 May 2007 21:53:42 +0000 (15:53 -0600)]
INLINE goes before the function's return type
Brian [Fri, 25 May 2007 21:45:21 +0000 (15:45 -0600)]
Add some comments to explain things, code clarifications.
Also, add quad.facing field for front/back facing. See comments for details.
Brian [Fri, 25 May 2007 04:16:26 +0000 (22:16 -0600)]
use GLubyte for stencil ref/mask/clear
Brian [Thu, 24 May 2007 23:37:36 +0000 (17:37 -0600)]
Stencil state.
Brian [Thu, 24 May 2007 22:50:45 +0000 (16:50 -0600)]
added st_atom_blend.c, st_atom_scissor.c
Brian [Thu, 24 May 2007 22:50:22 +0000 (16:50 -0600)]
Implement blend state
Brian [Thu, 24 May 2007 22:49:27 +0000 (16:49 -0600)]
#ifndef SP_DEFINES_H protection, copyright
Brian [Thu, 24 May 2007 22:48:38 +0000 (16:48 -0600)]
scissor depends on glScissor() and framebuffer size
Brian [Thu, 24 May 2007 20:37:00 +0000 (14:37 -0600)]
add scissor state
Brian [Thu, 24 May 2007 20:36:48 +0000 (14:36 -0600)]
scissor state
Brian [Thu, 24 May 2007 20:36:02 +0000 (14:36 -0600)]
define, use SP_MAX_CLIP_PLANES
Keith Whitwell [Thu, 24 May 2007 10:37:08 +0000 (11:37 +0100)]
Add the vf module.
This is a cleaned up version of the code in tnl/t_vertex*.
Keith Whitwell [Thu, 24 May 2007 09:44:53 +0000 (10:44 +0100)]
Use the x11 driver as a test harness for the softpipe/state_tracker code.
This has some limitations as we currently require a mapped framebuffer,
so it only really works with double-buffered ximage rgba8888 windows.
Keith Whitwell [Thu, 24 May 2007 09:41:34 +0000 (10:41 +0100)]
First version of the softpipe rasterizer.
This will flesh out to hopefully acheive 3 things:
- New software rasterizer for mesa
- New driver model for mesa & dri with much smaller drivers
- The basis for the cell driver.
It's got a long way to go yet, but will at least run trivial/tri.c.
Keith Whitwell [Thu, 24 May 2007 09:38:57 +0000 (10:38 +0100)]
Modifications to run with softpipe test harness
RGB->RGBA
double buffer by default.
Brian [Mon, 14 May 2007 20:30:36 +0000 (14:30 -0600)]
master/trunk is now for Mesa 7.1 devel: bump versions
Bruce Merry [Mon, 14 May 2007 15:37:48 +0000 (09:37 -0600)]
in __glXGetArrayType() return type, not enabled (bug 10938)
Brian [Fri, 11 May 2007 21:50:33 +0000 (15:50 -0600)]
comment about fixing uniform structs
Oliver McFadden [Sun, 13 May 2007 13:38:38 +0000 (13:38 +0000)]
r300: Enable the non-user-buffers code to compile.
Oliver McFadden [Sun, 13 May 2007 12:59:41 +0000 (12:59 +0000)]
r300: Use e32(0x0) rather than e32(0); makes greping for hex values easier.
Oliver McFadden [Sun, 13 May 2007 12:56:59 +0000 (12:56 +0000)]
r300: Use the defined values when writing to R300_RS_ROUTE_0.
Oliver McFadden [Sun, 13 May 2007 12:43:40 +0000 (12:43 +0000)]
r300: Use the defined values when writing to R300_SE_VTE_CNTL.
You can verify this is correct with the following code.
assert (0x043f ==
(R300_VTX_W0_FMT | R300_VPORT_X_SCALE_ENA | R300_VPORT_X_OFFSET_ENA
| R300_VPORT_Y_SCALE_ENA | R300_VPORT_Y_OFFSET_ENA |
R300_VPORT_Z_SCALE_ENA | R300_VPORT_Z_OFFSET_ENA));
Oliver McFadden [Sun, 13 May 2007 12:36:27 +0000 (12:36 +0000)]
r300: Added a TODO comment for the R300_VAP_INPUT_ROUTE_[01]_0 values.
Oliver McFadden [Sun, 13 May 2007 09:09:30 +0000 (09:09 +0000)]
r300: Changed some more functions to static functions.
This required reordering some of the functions which is why the diff is a little
larger.
Oliver McFadden [Sun, 13 May 2007 08:59:54 +0000 (08:59 +0000)]
r300: Changed a couple of functions in r300_state.c to static functions.
Oliver McFadden [Sun, 13 May 2007 08:43:30 +0000 (08:43 +0000)]
r300: Removed the unused r300_aos_rec (replaced by r300_dma_region) structure.
Oliver McFadden [Sun, 13 May 2007 08:28:51 +0000 (08:28 +0000)]
r300: Use #if 0 for disabled code, rather than commenting it out.
Oliver McFadden [Sun, 13 May 2007 08:21:50 +0000 (08:21 +0000)]
r300: Removed a couple of obsolete/commented out includes.
Oliver McFadden [Sun, 13 May 2007 07:51:41 +0000 (07:51 +0000)]
r300: A few very minor indenting corrections.
Oliver McFadden [Sun, 13 May 2007 07:44:20 +0000 (07:44 +0000)]
r300: Use the defined values for the interpolater (interp_magic) magic values.
Oliver McFadden [Sun, 13 May 2007 06:39:24 +0000 (06:39 +0000)]
r300: Use the defined values when writing to R300_VAP_INPUT_CNTL_[01].
You can verify this is correct with the following code.
assert (0x00000001 == R300_INPUT_CNTL_0_COLOR);
assert (0x00000405 ==
(R300_INPUT_CNTL_POS | R300_INPUT_CNTL_COLOR |
R300_INPUT_CNTL_TC0));
Oliver McFadden [Sat, 12 May 2007 17:16:56 +0000 (17:16 +0000)]
Revert "r300: Perform the locking closer to the DRM texture upload call."
This reverts commit
93881edb46fc95e1cfb4ded4e8a5db92612d3e4d.
Roland Scheidegger [Sat, 12 May 2007 09:20:24 +0000 (11:20 +0200)]
bring over recent radeonMakeCurrent fixes for r300 to radeon/r200
Oliver McFadden [Sat, 12 May 2007 01:53:56 +0000 (01:53 +0000)]
r300: Removed the name argument to ALLOC_STATE; do the name via the macro.
Oliver McFadden [Sat, 12 May 2007 01:13:54 +0000 (01:13 +0000)]
r300: Renamed r300DoEmitState to r300EmitAtoms.
Oliver McFadden [Sat, 12 May 2007 00:14:33 +0000 (00:14 +0000)]
r300: Perform the locking closer to the DRM texture upload call.
This might help if with attaching GDB if the driver gets into a -EAGAIN loop.
Oliver McFadden [Fri, 11 May 2007 23:35:37 +0000 (23:35 +0000)]
r300: Removed unused FORCE_32BITS_ELTS define.
Oliver McFadden [Fri, 11 May 2007 23:33:47 +0000 (23:33 +0000)]
r300: Removed the unused CPT macro.
Oliver McFadden [Fri, 11 May 2007 23:32:03 +0000 (23:32 +0000)]
r300: Moved r300PackFloat24 near r300PackFloat32.
Oliver McFadden [Fri, 11 May 2007 23:13:08 +0000 (23:13 +0000)]
r300: Added insert_at_tail to the ALLOC_STATE macro.
Oliver McFadden [Fri, 11 May 2007 23:03:40 +0000 (23:03 +0000)]
Revert "r300: Merged radeon_span.c."
This reverts commit
0aa998b2ab6fdfe139b54de9868e2383440685d0.
Oliver McFadden [Fri, 11 May 2007 22:26:47 +0000 (22:26 +0000)]
r300: Corrected another error; regexp replaced something it shouldn't have.
Oliver McFadden [Fri, 11 May 2007 22:23:31 +0000 (22:23 +0000)]
r300: Corrected some macro errors from the previous commit.
Oliver McFadden [Fri, 11 May 2007 22:21:19 +0000 (22:21 +0000)]
r300: Reduced the diff on radeon_lock.[ch].
Oliver McFadden [Fri, 11 May 2007 22:02:52 +0000 (22:02 +0000)]
r300: Initial work on merging radeon_lock.[ch].
Oliver McFadden [Fri, 11 May 2007 21:56:10 +0000 (21:56 +0000)]
r300: Merged radeon_span.c.
Oliver McFadden [Fri, 11 May 2007 21:45:14 +0000 (21:45 +0000)]
r300: Cleaned up function names in r300_texstate.c.
Oliver McFadden [Fri, 11 May 2007 21:40:00 +0000 (21:40 +0000)]
r300: Enable hardware 3D texture support. Fixes the stex3d demo.
Oliver McFadden [Fri, 11 May 2007 21:36:13 +0000 (21:36 +0000)]
Oliver McFadden [Fri, 11 May 2007 21:31:22 +0000 (21:31 +0000)]
r300: Cleaned up the blend factor function.
Oliver McFadden [Fri, 11 May 2007 21:22:37 +0000 (21:22 +0000)]
r300: Removed the r300BindProgram function; mesa default does better checking.
Oliver McFadden [Fri, 11 May 2007 21:08:56 +0000 (21:08 +0000)]
r300: Removed deprecated/disabled VBO code from r300_mem.c
Also removed a couple of unused fields from the r300_memory_manager structure.
Oliver McFadden [Fri, 11 May 2007 20:48:35 +0000 (20:48 +0000)]
r300: Indented r300_mem.c; I forgot this because it used to be radeon_mm.c.
Oliver McFadden [Fri, 11 May 2007 20:09:01 +0000 (20:09 +0000)]
r300: Use __FUNCTION__ not __func__.
Just for consistency; most of the code already uses __FUNCTION__.
Oliver McFadden [Fri, 11 May 2007 20:06:43 +0000 (20:06 +0000)]
r300: Assert if the primitive type is unknown; this can't really happen.
Oliver McFadden [Fri, 11 May 2007 19:57:07 +0000 (19:57 +0000)]
r300: Moved some code around in r300_render.c and general clean up.
Brian [Fri, 11 May 2007 21:35:12 +0000 (15:35 -0600)]
user-declared uniform structs not supported yet (see bug 10908)
Brian [Fri, 11 May 2007 21:34:29 +0000 (15:34 -0600)]
don't ignore return value of _slang_codegen_global_variable()
Brian [Fri, 11 May 2007 21:12:40 +0000 (15:12 -0600)]
remove some unneeded code in init_machine()
Oliver McFadden [Fri, 11 May 2007 19:44:35 +0000 (19:44 +0000)]
r300: Removed some checking in r300NumVerts that is not needed.
According to Aapo Tahkola the OpenGL specification defines the behaviour when
there are not enough vertices for the primitive type, thus DRI drivers do not
need to perform verification on the number of vertices per primitive.
Oliver McFadden [Fri, 11 May 2007 19:28:35 +0000 (19:28 +0000)]
r300: Function naming correction in r300_texmem.c.
Oliver McFadden [Fri, 11 May 2007 19:21:08 +0000 (19:21 +0000)]
r300: Cleaned up function names in r300_state.c.
Oliver McFadden [Fri, 11 May 2007 17:10:59 +0000 (17:10 +0000)]
r300: Cleaned up function naming in r300_emit.c.
Oliver McFadden [Fri, 11 May 2007 17:07:09 +0000 (17:07 +0000)]
r300: Renamed r300_maos.c to r300_emit.c; it contains mostly emit code now.
Brian [Fri, 11 May 2007 14:41:34 +0000 (08:41 -0600)]
Remove unused FB_* tokens, re-indent code.
Brian [Fri, 11 May 2007 14:39:18 +0000 (08:39 -0600)]
When feeding back texcoords, don't divide by W. See bug 10913.
Patrick Baggett [Fri, 11 May 2007 14:19:33 +0000 (08:19 -0600)]
Fix some bugs related to loop counters and conditional branching.
Brian [Thu, 10 May 2007 23:33:14 +0000 (17:33 -0600)]
more indentation fixes, remove 'register' keywords
Brian [Thu, 10 May 2007 23:30:44 +0000 (17:30 -0600)]
re-indent some code
Brian [Thu, 10 May 2007 22:14:10 +0000 (16:14 -0600)]
document exp(), mod() fixes
Brian [Thu, 10 May 2007 20:49:06 +0000 (14:49 -0600)]
regenerated
Brian [Thu, 10 May 2007 20:48:55 +0000 (14:48 -0600)]
Implement exp() in terms of __asm float_power. Fix typo in mod(vec4) function.
exp() was using __asm float_exp (OPCODE_EXP) but that computes base two, not e.
See bug 10907.
Ian Romanick [Thu, 10 May 2007 22:00:41 +0000 (15:00 -0700)]
Fix reversed enable logic in enable_texture
Fix bug inserted in commit
c9e723e5013443df984cb3987ffa3a9ba3384b89.
Discovered by Oliver McFadden (z3ro).
Oliver McFadden [Thu, 10 May 2007 22:01:41 +0000 (22:01 +0000)]
r300: Added TODO comment regarding texture tiling; I'm not sure about this.
Oliver McFadden [Thu, 10 May 2007 21:40:20 +0000 (21:40 +0000)]
r300: Corrected a compile error introduced by one of the previous commits.