Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-04-25 | update some tests for visual bit depths to use renderbuffers | Brian Paul | |
2006-04-25 | Remove carriage returns. | Michal Krol | |
2006-04-14 | don't need s_depth.h | Brian Paul | |
2006-04-04 | Fix texcoord interpolation for fragment shaders. | Michal Krol | |
2006-03-29 | put braces around RENDER_SPAN macro when called, not when defined. Fixes ↵ | Brian Paul | |
-pedantic warnings in x11 driver | |||
2005-12-07 | Fix bugzilla 5253. Add {} around code in RENDER_SPAN macros when code ↵ | Karl Schultz | |
includes a variable declaration. | |||
2005-11-16 | Use new gl_framebuffer _Depth/_StencilBuffer fields instead of | Brian Paul | |
Attachment[BUFFER_DEPTH/STENCIL].Renderbuffer. The former may be wrappers around combined depth/stencil renderbuffers attached at the later points. | |||
2005-10-05 | Remove _IsPowerOfTwo from gl_texture_object, not really needed. | Brian Paul | |
2005-10-05 | In gl_texture_image replace IntFormat with InternalFormat and Format with | Brian Paul | |
_BaseFormat to be consistant with gl_renderbuffer. | |||
2005-09-21 | replace GLdepth with GLuint and remove GLdepth | Brian Paul | |
2005-09-02 | Check for ATI_fragment_shader enabled | Dave Airlie | |
2005-08-27 | Rearrange the code related to GL_ARB_occlusion_object to generalize query | Brian Paul | |
objects for future types of queries. | |||
2005-08-25 | removed GL_HP_occlusion_test extension | Brian Paul | |
2005-06-30 | Redo all the GL_LINEAR interpolation code in terms of LERP macros/functions. | Brian Paul | |
This cleans up and simplifies the arithmetic quite a bit. | |||
2005-06-10 | pass mask array to PutRowRGB() in simple_z_textured_triangle() | Brian Paul | |
2005-06-02 | Remove last of the old span code. | Brian Paul | |
2005-05-04 | Major check-in of changes for GL_EXT_framebuffer_object extension. | Brian Paul | |
Main driver impacts: - new code for creating the Mesa GLframebuffer - new span/pixel read/write code Some drivers not yet updated/tested. | |||
2005-05-04 | Add a facility to route all rasterization through a fragment program | Keith Whitwell | |
which is automatically generated to match the current texture environment state. Introduces a new value ctx->FragmentProgram._Active which is true when either _Enabled is true or there is such a fragment program ready to run. To test out on a driver running the software rasterizer, set MESA_TEX_PROG=t in the environment. It goes without saying that performance is lower for the software rasterizer in this mode. | |||
2004-12-18 | Consolidate _swrast_write_texture_span() into _swrast_write_rgba_span(). | Brian Paul | |
2004-08-25 | Silence gcc 3.4 warnings on ReactOS. Mostly unused var warnings. (patch ↵ | Brian Paul | |
1015696) | |||
2004-06-24 | fix HP occlusion testing when using generic span path | Brian Paul | |
2004-06-23 | Fixed occlusion_zless_triangle() to work with 16 or 32-bit Z buffers. | Brian Paul | |
Removed some unneeded lines, other minor clean-ups. | |||
2004-05-25 | only use simple_z_textured_triangle if depthBits <= 16 | Brian Paul | |
2004-04-23 | Added ctx->Vertex/FragmentProgram._Enable flags. Set when vertex/fragment | Brian Paul | |
program is enabled AND the currently bound program is valid. Check _Enable instead of Enable to prevent things from blowing up when someone calls glEnable(GL_VERTEX_PROGRAM_ARB) without actually defining a program. | |||
2004-03-09 | Fix color index mode rendering. | Brian Paul | |
Changed SWvertex's index field to GLfloat and fix a few other bits. | |||
2004-02-17 | A bit of an overhaul of the fog code. | Brian Paul | |
glFogCoord didn't always work reliably. ARB fragment program fog options work now. Per-fragment fog computations are now perspective corrected. | |||
2004-02-17 | just some reformatting | Brian Paul | |
2004-01-27 | Consolidate texObj->Pos/Neg/X/Y/Z and texObj->Image into a single | Keith Whitwell | |
array, texObj->Image[face][level]. | |||
2003-12-09 | Update NEED_SECONDARY_COLOR macro to test if either vertex/fragment | Brian Paul | |
programs are enabled and if they need secondary color input register. Patch by Karl Rasche, with tweaks by Brian. | |||
2003-09-18 | s/_backface_sign/_BackfaceSign/ | Brian Paul | |
2003-07-03 | Implemented GL_ARB_texture_non_power_of_two (except for auto mipmap generation). | Brian Paul | |
2003-06-13 | Implemented GL_ARB_occlusion_query (not 100% finalized). | Brian Paul | |
2003-04-21 | remove unneeded fragment program test | Brian Paul | |
2003-04-08 | Added ctx->Texture._EnabledCoordUnits bitfield. | Brian Paul | |
Fixed some vertex array / vertex program glitches with glDrawElements. Fixed some fragment program runtime bugs. Non-trivial Cg programs are running now. | |||
2003-03-25 | replace _mesa_ prefix with _swrast_, remove s_histogram.[ch] | Brian Paul | |
2003-03-16 | Store partial derivative values in sw_span structure. | Brian Paul | |
Implemented DDX and DDY fragment program instructions (whew!) Not fully tested yet. | |||
2003-03-14 | Clean-up of parser error handling/reporting. | Brian Paul | |
Basic fragment program texture instructions are limping along. | |||
2003-03-01 | Killed mmath.[ch]. Moved low-level functions/assembly code into imports.[ch] | Brian Paul | |
Moved type conversion and interpolation macros into macros.h Updated all the files that used to include mmath.h | |||
2002-12-18 | comment changes | Brian Paul | |
2002-11-13 | moved function declaration into the template, define the NAME to specify the ↵ | Brian Paul | |
function names | |||
2002-10-30 | don't call abort() | Brian Paul | |
2002-10-24 | Header file clean-up: | Brian Paul | |
1. Remove all.h and PC_HEADER junk. 2. Rolled mem.c and mem.h into imports.c and imports.h 3. Include imports.h instead of mem.h Restore _mesa_create/initialize_context() to be like they were in 4.0.4 New wrappers for a few std C functions: _mesa_atoi(), _mesa_strstr(), etc. | |||
2002-09-23 | merge gl_texture_image RowStride from DRI 4.0.4 | Brian Paul | |
2002-08-07 | struct sw_span is again allocated on the stack, but the arrays of span | Brian Paul | |
data are broken out into a new struct span_arrays which is allocated per-context (to avoid huge stack allocations - a problem on Windows). This lets us use span.redStep instead of span->redStep (for example) to hopefully get slightly better performance in the triangle functions. | |||
2002-07-09 | Overhaul of glRead/DrawBuffer() code. Now, swrast->Driver.SetBuffer() | Brian Paul | |
indicates the read AND draw color buffer for all software rasterization. Lots of related clean-ups. See RELNOTES-4.1 for details. | |||
2002-06-15 | Implemented GL_NV_texture_rectangle extension. | Brian Paul | |
Replace struct gl_texure_object's Dimension w/ Target field. Added _EnabledUnits to struct gl_texture_attrib - the _ReallyEnabled field is obsolete, but still present for now. This effectively removes the 8-texture units limit, 32 units now possible, but unlikely! New TEXTURE_1D/2D/3D/CUBE/RECT_BIT tokens for unit->_ReallyEnabled field. Updated device drivers to use ctx->Texture._EnabledUnits. | |||
2002-04-19 | Allocate a sw_span struct in the swrast context instead of allocating it | Brian Paul | |
on the stack frame in the point/line/triangle functions. (Klaus Niederkrueger) This should solve the performance problem Karl found on Windows. | |||
2002-04-12 | Klaus Niederkrueger's latest changes: use INIT_SPAN() to init span primitive | Brian Paul | |
type, width, interp mask and array mask. | |||
2002-03-25 | removed a bad assertion | Brian Paul | |
2002-03-16 | New mipmap lambda calculation. Previously, trilinear filtering could | Brian Paul | |
result in _very_ blurry textures. Still need to do some optimization of the new code in s_span.c |