Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added OSMesaColorClamp(), bug 4917 | Brian Paul | 2005-11-12 | 4 | -13/+7 |
| | |||||
* | Move stuff common to vertex/fragment_program into the base class, including: | Brian Paul | 2005-11-12 | 5 | -27/+33 |
| | | | | | | Instructions, InputsRead, OutputsWritten, and Parameters. Also, added debug functions: _mesa_print_instruction(), _mesa_print_program_parameters() and revamp _mesa_print_program(). | ||||
* | Make _mesa_is_proxy_texture() non-static and use in a few more places. | Brian Paul | 2005-11-11 | 4 | -82/+39 |
| | | | | | Use COPY_4FV() where possible. Added some comments, clean-ups. | ||||
* | s/MAX_LIGHTS/ctx->Const.MaxLights/ and spruce up some comments | Brian Paul | 2005-11-10 | 2 | -18/+26 |
| | |||||
* | fix popping of GL_SPOT_DIRECTION (bug 5005) | Brian Paul | 2005-11-10 | 1 | -1/+1 |
| | |||||
* | Move code to enable FP exceptions into debug.c (set MESA_DEBUG=fpexceptions). | Brian Paul | 2005-11-10 | 3 | -16/+14 |
| | | | | Get rid of MESA_DEBUG preprocessor symbol, just use DEBUG instead. | ||||
* | fix popping of GL_EYE_PLANE state (bug 4996) | Brian Paul | 2005-11-09 | 1 | -10/+20 |
| | |||||
* | Bug 4996. | Brian Paul | 2005-11-09 | 3 | -40/+38 |
| | | | | | Replace use of FLOAT_TO_USHORT with either CLAMPED_FLOAT_TO_USHORT or UNCLAMPED_FLOAT_TO_USHORT. Same should be done for UBYTE, UINT, etc. | ||||
* | Move COPY_FLOAT() macro down into glide driver. | Brian Paul | 2005-11-09 | 2 | -16/+14 |
| | | | | | Rewrite COPY_4FV() macro to not use COPY_FLOAT(), and use integer moves as originally intended. | ||||
* | At keithw's request, remove all traces of the "fragment program to C" and | Ian Romanick | 2005-11-08 | 1 | -5/+0 |
| | | | | TCC experiment. | ||||
* | s/_mesa_debug_fp_inst/_mesa_print_program/ | Brian Paul | 2005-11-08 | 1 | -1/+1 |
| | |||||
* | some initial work on upcoming GL_EXT_framebuffer_blit extension | Brian Paul | 2005-11-08 | 6 | -26/+201 |
| | |||||
* | Unify vertex/fragment program instuctions. | Brian Paul | 2005-11-05 | 2 | -34/+33 |
| | | | | Based on patch by Ian (#4967) but also unify instruction opcodes. | ||||
* | remove unneeded #includes | Brian Paul | 2005-11-05 | 2 | -4/+0 |
| | |||||
* | Replace parameter_type enum in program.[ch], use register_file enums instead. | Brian Paul | 2005-11-05 | 1 | -11/+14 |
| | |||||
* | minor improvements in _mesa_init_teximage_fields() | Brian Paul | 2005-11-05 | 1 | -9/+9 |
| | |||||
* | better ffs() function (bug 4956) | Brian Paul | 2005-11-04 | 1 | -6/+20 |
| | |||||
* | fix MinGW problems (bug 4956) | Brian Paul | 2005-11-04 | 1 | -1/+1 |
| | |||||
* | Rename FRAG_OUTPUT_* tokens to FRAG_RESULT_* to match vertex program convention | Brian Paul | 2005-11-02 | 2 | -13/+16 |
| | |||||
* | Several fp and vp tweaks: | Keith Whitwell | 2005-11-01 | 2 | -34/+58 |
| | | | | | | | | | | | | | | | | | | | | | | - Renumber VERT_RESULT_* values so that they match the numbers of the corresponding FRAG_ATTRIB_ values. - Add ctx->VertexProgram._Current and FragmentProgram._Current values which point to either the current client-supplied program if enabled, or otherwise to the current mesa-internal program. Thus this program is always the correct one for the current state, providing that the mesa flags to turn on automatic generation are enabled. - Add callbacks to ctx->Driver.BindProgram() in texenvprogram.c and t_vp_build.c so that the driver knows when the generated program changes. This is cleaner than trying to code all the possible _NEW_* flags into the driver, and more precise as well. - Add a UsesKill flag to identify fragment programs with that instruction, as these can require special treatment. - Move the FRAG_OUTPUT values to mtypes.h, near to similar defn's. | ||||
* | Re-org and clean-up of vertx/fragment program limits (instructions, | Brian Paul | 2005-11-01 | 7 | -44/+92 |
| | | | | | | | temporaries, parameters, etc). glGetProgramivARB() now returns all the right things. Updated i915 and r300 code to initialize program native limits and current program's native instruction/temporary/etc counts. | ||||
* | clean-up comments | Brian Paul | 2005-10-29 | 1 | -6/+9 |
| | |||||
* | fix GLX server resize/crash when resizing windows | Brian Paul | 2005-10-21 | 2 | -1/+4 |
| | |||||
* | descrip.mms syntax correction | Jouk Jansen | 2005-10-20 | 1 | -1/+1 |
| | |||||
* | updated for new mm.c, execmem.c files | Brian Paul | 2005-10-19 | 1 | -0/+6 |
| | |||||
* | move _mesa_exec_malloc/free() up near other malloc/free prototypes | Brian Paul | 2005-10-18 | 1 | -11/+8 |
| | |||||
* | Lots of clean-ups. Replace __inline__ with INLINE macro. Use the | Brian Paul | 2005-10-18 | 3 | -50/+134 |
| | | | | | _mesa_calloc(), _mesa_free() functions. Clean-up formatting, doxygen-style comments. | ||||
* | Add _mesa_exec_malloc() and _mesa_exec_free() for allocating | Keith Whitwell | 2005-10-18 | 4 | -0/+392 |
| | | | | | executable memory. Based on Thomas Hellstrom's patch. TODO: glapi.c also needs this, but cannot access this code. | ||||
* | remove unused _mesa_log2() (bug 4468) | Brian Paul | 2005-10-12 | 1 | -3/+0 |
| | |||||
* | change test for presence of accum buffer | Brian Paul | 2005-10-08 | 1 | -1/+1 |
| | |||||
* | Fix some issues with state updates and renderbuffers. Querying GL_RED_BITS, | Brian Paul | 2005-10-08 | 4 | -28/+64 |
| | | | | etc. after calling glRenderBufferStorageEXT gave undefined results. | ||||
* | Populate arb_fp_instruction negate field correctly. | Keith Whitwell | 2005-10-07 | 1 | -1/+1 |
| | |||||
* | Fix a number of point size attenuation problems. | Brian Paul | 2005-10-07 | 3 | -44/+52 |
| | | | | Move size clamping into the rasterization function. | ||||
* | fix byteswapping bug in _mesa_texstore_ycbcr() (Benjamin Herrenschmidt) | Brian Paul | 2005-10-05 | 1 | -7/+7 |
| | |||||
* | Remove _IsPowerOfTwo from gl_texture_object, not really needed. | Brian Paul | 2005-10-05 | 2 | -8/+0 |
| | |||||
* | s/IntFormat/InternalFormat/ and s/Format/_BaseFormat/ for gl_color_table. | Brian Paul | 2005-10-05 | 4 | -23/+23 |
| | |||||
* | In gl_texture_image replace IntFormat with InternalFormat and Format with | Brian Paul | 2005-10-05 | 7 | -51/+56 |
| | | | | _BaseFormat to be consistant with gl_renderbuffer. | ||||
* | check if deleting currently bound frame/renderbuffer object | Brian Paul | 2005-10-04 | 1 | -1/+16 |
| | |||||
* | fix behaviour of glIsFrame/Renderbuffer() | Brian Paul | 2005-10-04 | 1 | -8/+12 |
| | |||||
* | change initialization of renderbuffer DepthBits | Brian Paul | 2005-10-04 | 2 | -3/+13 |
| | |||||
* | Bug #1155: Define IEEE_ONE on Super-H as well. | Adam Jackson | 2005-10-03 | 1 | -0/+1 |
| | |||||
* | disable a warning | Brian Paul | 2005-10-03 | 1 | -1/+1 |
| | |||||
* | added a few calls to _mesa_update_framebuffer_visual() | Brian Paul | 2005-10-03 | 1 | -0/+4 |
| | |||||
* | finish up some missing code | Brian Paul | 2005-10-03 | 1 | -2/+24 |
| | |||||
* | check for GL_DEPTH_STENCIL_EXT | Brian Paul | 2005-10-01 | 1 | -1/+2 |
| | |||||
* | plug in _mesa_texstore_z24_s8() | Brian Paul | 2005-10-01 | 1 | -1/+1 |
| | |||||
* | added _mesa_texstore_z24_s8() | Brian Paul | 2005-10-01 | 1 | -8/+40 |
| | |||||
* | additional error checking for GL_EXT_packed_depth_stencil | Brian Paul | 2005-10-01 | 1 | -13/+50 |
| | |||||
* | fix broken z24_s8 fetcher | Brian Paul | 2005-10-01 | 1 | -4/+4 |
| | |||||
* | updated comment | Brian Paul | 2005-10-01 | 1 | -3/+3 |
| |