summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2007-01-06Initialize GL_ARB_occlusion_query only if DRM support is present.Keith Packard
DRM versions before 1.8 do not include the necessary ioctls to support GL_ARB_occlusion_query, don't enable it on these versions.
2007-01-06Merge branch 'master' into crestlineWang Zhenyu
Conflicts: src/mesa/drivers/dri/i965/brw_tex_layout.c Michel Dänzer replaced the copy of the 945 mipmap layout code with that from the 945 driver directly.
2007-01-06i965: xdemos/glxthreads get: Assertion `block->fenced' failed (9201)Zou Nan hai
Signed-off-by: Keith Packard <keithp@neko.keithp.com>
2007-01-06i965: Take clip rects into account when computing max primZou Nan hai
Signed-off-by: Keith Packard <keithp@neko.keithp.com>
2007-01-06i965: ARB_occlusion_query supportWang Zhenyu
Signed-off-by: Keith Packard <keithp@neko.keithp.com>
2007-01-06i965: Avoid branch instructions while in single program flow mode.Eric Anholt
There is an errata for Broadwater that threads don't have the instruction/loop mask stacks initialized on thread spawn. In single program flow mode, those stacks are not writable, so we can't initialize them. However, they do get read during ELSE and ENDIF instructions. So, instead, replace branch instructions in single program flow mode with predicated jumps (ADD to the ip register), avoiding use of the more complicated branch instructions that may fail. This is also a minor optimization as no ENDIF equivalent is necessary. Signed-off-by: Keith Packard <keithp@neko.keithp.com>
2007-01-06i965: Connect INTEL_DEBUG=sync up to cmd/batch ioctls.Eric Anholt
Signed-off-by: Keith Packard <keithp@neko.keithp.com>
2007-01-06Merge branch 'master' of git+ssh://brianp@git.freedesktop.org/git/mesa/mesaBrian
2007-01-06Use GLuint instead of GLint to store intermediate Z values. Fixes problems ↵Brian
when using 32-bit Z buffer.
2007-01-05Add reporting of damage by DRI drivers when the extension support is available.Eric Anholt
With this, tools like ximagesrc in gstreamer correctly see updates from GL rendering. Support requires that the Xdamage library be current (but will be disabled if not present) plus a new X Server with support for the new XDamagePost request. libGL now has a new interface version, and also links against libXdamage and libXfixes to support it, but backwards compatibility is retained. Currently, all drivers report damage at SwapBuffers time through common code -- front buffer rendering doesn't result in damage being reported. Also, the damage is against the root window, as our drivers don't yet render to backing store when they should (composited environments).
2007-01-05Checkpoint glsl compiler work: sampler uniforms now implemented, linked ↵Brian
properly.
2007-01-05added PROGRAM_SAMPLERBrian
2007-01-05added Sampler field to prog_instruction structBrian
2007-01-05added PROGRAM_SAMPLERBrian
2007-01-05added _mesa_add_sampler()Brian
2007-01-05Merge branch 'master' of git+ssh://brianp@git.freedesktop.org/git/mesa/mesaBrian
2007-01-05Fix glPush/PopClientAttrib() for VBO state (bug 9445).Brian
2007-01-04Merge branch 'master' of ssh+git://idr@git.freedesktop.org/git/mesa/mesaIan Romanick
2007-01-04update TexturesUsed[] in slang_update_inputs_outputs()Brian
2007-01-04update TexturesUsed[] in slang_update_inputs_outputs()Brian
2007-01-04compute InputsRead/OutputsWritten with slang_update_inputs_outputs()Brian
2007-01-04move TexturesUsed[] into gl_program since vertex programs/shaders can use ↵Brian
textures nowadays
2007-01-04simplify update_texture_state() a bit, compute _EnabledCoordUnits for shadersBrian
2007-01-04Use glxbyteorder.h in server-side source files.Ian Romanick
2007-01-04Hack indent flags for indirect_reqsize.h to eliminate extra diffs.Ian Romanick
2007-01-04Add missing files to server generation list.Ian Romanick
The files indirect_reqsize.c and indirect_reqsize.h were missing from the list of files to be generated for the server. Add them back to the list. Also, update the INDENT_FLAGS to prevent conversion of 'GLbyte *pc' to 'GLbyte * pc' in function prototypes.
2007-01-04minor formatting fixBrian
2007-01-04added texture attribs in slang_find_input()Brian
2007-01-04initial code to get texture sampling limping alongBrian
2007-01-04temporary disable some memory deallocations to work around a memory ↵Brian
corruption bug
2007-01-04finish some loose ends in _mesa_uniform()Brian
2007-01-04update_texture_state() updated for new shadersBrian
2007-01-04r300: Correct bug introduced by fragprog rework.Jerome Glisse
Thx for Tilman who spoted the bugs.
2007-01-04Fix some incorrect GL error values. Reorganize _mesa_compile_shader() code.Brian
2007-01-04s/unsigned/size_t/ (Matthias Hopf)Brian
2007-01-02Update spot light paramsPatrice Mandin
2007-01-02nouveau: bump drm patchlevel.Ben Skeggs
2006-12-31fix issue with i915tex advertising visuals it can't supportDave Airlie
This may not be the proper way to fix this but it does work easily.
2006-12-30Use the tiled flag in the sarea to determine region tiling.Haihao Xiang
This fixes mis-rendering if back/depth fail to get set up as tiled. While it probably won't ever be the case now that the pitch limits are loosened, this is still the right thing to do.
2006-12-27nouveau: Use bufferobj interface for fragment program uploadsBen Skeggs
2006-12-27nouveau: Initial buffer object supportBen Skeggs
2006-12-27nouveau: We'll need syncNotifier for NV_MEMORY_TO_MEMORY_FORMAT too.Ben Skeggs
2006-12-27nouveau: add nouveau_mem_alloc/free debuggingBen Skeggs
2006-12-27nouveau: record *actual* type of memory that was alloc'd, not the requested ↵Ben Skeggs
types.
2006-12-27nouveau: TypoBen Skeggs
2006-12-27nouveau: Add simple wrapper for NV_MEMORY_TO_MEMORY_FORMAT.Ben Skeggs
2006-12-26Support linear format in i965.Haihao Xiang
Fix bug #117 #118
2006-12-26Deleted unused file which likely have be reintroduced during git move.Jerome Glisse
This file was deleted longtime ago, guess that git migration created it again.
2006-12-26nouveau: Make use of NOUVEAU_DEBUG for shader disasmBen Skeggs
2006-12-26nouveau: Make the notifier stuff actually work..Ben Skeggs