Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-10-13 | Drop GLcontext typedef and use struct gl_context instead | Kristian Høgsberg | |
2009-11-05 | mesa/main: Add more OpenGL ES types to glheader.h. | Chia-I Wu | |
Signed-off-by: Chia-I Wu <olvaffe@gmail.com> | |||
2009-09-19 | swrast: remove prototypes for obsolete functions | Brian Paul | |
2009-09-19 | swrast: remove prototypes for obsolete functions | Brian Paul | |
2009-03-07 | mesa: remove GL_MESA_program_debug extension | Brian Paul | |
This was never fully fleshed out and hasn't been used. | |||
2009-02-28 | mesa: move GLfixed type and related macros to swrast module | Brian Paul | |
Fixed point is only used in swrast and sw-based drivers. | |||
2007-11-30 | fix broken two-sided stencil | Brian | |
2007-07-04 | Be more consistant with paths in #includes. Eventually, eliminate a bunch ↵ | Brian | |
of -I flags. | |||
2007-05-20 | Overhaul/simplify SWvertex and SWspan attribute handling. | Brian | |
Instead of separate fog/specular/texcoord/varying code, just treat all of them as generic attributes. Simplifies the point/line/triangle functions. | |||
2007-04-23 | remove SWvertex->fog field, use attrib field | Brian | |
2007-02-05 | Merge SWvertex texcoord and varying fields into attrib[] array field. | Brian | |
Fragment texcoords and varying code is now unified in the point/line/triangle rasterization code. In the future, merge color, fog, etc. attribs. | |||
2006-12-21 | s/attribute/varying/ | Brian | |
2006-11-01 | Remove x/y/width/height parameters from Clear functions. | Brian Paul | |
2006-10-18 | Don't pass x/y/width/height to ctx->Driver.Accum(). | Brian Paul | |
Compute the region after we've locked (and possibly updated the buffer's size). Same thing is needed for ctx->Driver.Clear(). | |||
2006-10-10 | Move the fp_machine struct into s_nvfragmprog.c since (except for program | Brian Paul | |
debug) it's only used there. | |||
2006-04-11 | More GLSL code: | Michal Krol | |
- use macros to access and modify render inputs bit-field; - un-alias generic vertex attributes for ARB vertex calls; - use MAX_VERTEX_PROGRAM_ATTRIBS (NV code) or MAX_VERTEX_ATTRIBS (ARB code) in place of VERT_ATTRIB_MAX; - define VERT_ATTRIB_GENERIC0..15 for un-aliased vertex attributes for ARB_vertex_shader; - fix generic attribute index range check in arbprogparse.c; - interface GLSL varyings between vertex and fragment shader; - use 64-bit optimised bitset (bitset.h) for render inputs; | |||
2006-03-26 | merge from texman branch | Brian Paul | |
2006-03-02 | implementation of _swrast_BlitFramebuffer() | Brian Paul | |
2006-03-01 | _swrast_blit_framebuffer() function | Brian Paul | |
2005-09-16 | more GLuint->GLbitfield changes | Brian Paul | |
2005-09-15 | updated comments | Brian Paul | |
2005-09-03 | Remove last remnants of pre-renderbuffer code. | Brian Paul | |
2005-07-26 | improve comments about win[0..3] values (bug 2554) | Brian Paul | |
2005-07-01 | Remove NEW_RENDERBUFFER stuff. | Brian Paul | |
Now, OLD_RENDERBUFFER marks code that needs to eventually be removed when all the drivers are updated to no longer need the SetBuffer() function. | |||
2005-06-04 | remove old span functions from swrast_device_driver struct | 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. | |||
2004-10-31 | Removed _swrast_validate_pbo_access(). | Brian Paul | |
In x11 driver, map/unmap PBO as needed in DrawPixels functions. | |||
2004-10-02 | added support for GL_ARB_draw_buffers | Brian Paul | |
2004-09-24 | patches for clearing hw depth buffers from software fallback (Nicolai Haehnle) | Brian Paul | |
2004-03-21 | Implemented support for software-based AUX color buffers. | Brian Paul | |
Only available with Xlib driver for now. Assorted clean-ups related to Draw/ReadBuffer(). Renamed FRONT_LEFT_BIT -> DD_FRONT_LEFT_BIT, etc. | |||
2004-03-13 | Implementation of GL_EXT_pixel_buffer_object extension. | Brian Paul | |
Note: extension may not be finalized yet - subject to change! Note: implementation not fully suitable for h/w implementation yet. | |||
2004-03-09 | Fix color index mode rendering. | Brian Paul | |
Changed SWvertex's index field to GLfloat and fix a few other bits. | |||
2003-09-17 | changed a comment | Brian Paul | |
2003-06-05 | Removed all RCS / CVS tags (Id, Header, Date, etc.) from everything. | Ian Romanick | |
2003-02-23 | Move span stuff from swrast.h to s_context.h (it's private). | Brian Paul | |
Implemented remaining fragment program instructions. Initial changes to implement fragment program texture sampling. | |||
2003-01-14 | First batch of code for GL_NV_fragment_program. | Brian Paul | |
Re-org of some GL_NV_vertex_program code. Replace MAX_TEXTURE_UNITS with MAX_TEXTURE_COORD_UNITS and MAX_TEXTURE_IMAGE_UNITS. | |||
2002-11-13 | added comments about NULL mask parameter to span-write functions | Brian Paul | |
2002-10-29 | updated email addresses | Brian Paul | |
2002-10-21 | doxygen comments (Klaus Niederkrueger) | Brian Paul | |
2002-10-11 | Another round of glRead/DrawBuffer() clean-ups and simplifications. | Brian Paul | |
Replaced ctx->Color._DriverDrawBuffer with swrast->CurrentBuffer. Replaced ctx->Pixel._DriverReadBuffer with ctx->Pixel._ReadSrcMask. swrast->Driver.SetBuffer() takes FRONT/BACK_LEFT/RIGHT_BIT values now. Added tokens and code for GL_AUX buffers, for completeness. | |||
2002-10-04 | multiple GL_POINTS can now be rendered together into one fragment span | Brian Paul | |
2002-10-02 | finished up GL_EXT_stencil_two_side | Brian Paul | |
2002-09-17 | pull-in changes from DRI/Mesa-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-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 | updated a few comments | Brian Paul | |
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-16 | Lots of changes related to framebuffer/window buffer resizing. Basically, | Brian Paul | |
instead of passing a GLcontext* to ResizeBuffers(), pass a GLframebuffer*. The idea is that a window can be resized without it being bound to a rendering context. This makes for a nice clean-up in the XFree86 server-side GLX code. Renamed ctx->Driver.ResizeBuffersMESA() to ctx->Driver.ResizeBuffers(). | |||
2002-02-02 | sw_span can now hold x/y arrays of fragment positions - getting ready to | Brian Paul | |
ditch the pb (pixel buffer) code. Converted point drawing, bitmaps and aa lines to use new span functions. |