summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-06-23gallium: added some assertionsBrian Paul
2008-06-23Don't make libmesa.a or libglapi.a depend on asm_subdirsBrian Paul
Since the asm_subdirs target does not actually create a file, make will always consider that it needs to be rebuilt. If libmesa.a and libglapi.a have asm_subdirs as a prerequisite, then they will always need to be rebuilt, too. The correct order will be preserved by the default target, though. This should fix #16358. Conflicts: src/mesa/Makefile cherry-picked from master
2008-06-23Create $(TOP)/$(LIB_DIR) for install, tooDan Nicholson
If `make install' is run without running `make' first, the $(LIB_DIR) will not be created. This also changes the mkdir a little bit so that it isn't run if necessary and added `-p' so that it is immune to races.
2008-06-23Ensure all objects are built when installing DRIDan Nicholson
2008-06-23util: Blit can now copy from texture to surfaceJakob Bornecrantz
2008-06-23gallium: Add accessor functions to get textures from a st_framebufferJakob Bornecrantz
2008-06-23scons: Update to target WinCE 6.0.José Fonseca
2008-06-23gallium: Fix warning in u_draw_quad.hJakob Bornecrantz
2008-06-23i915: Removed level_offset from i915_textureJakob Bornecrantz
All offsets are now on image_offset.
2008-06-22draw: fix non-i386 buildsKeith Whitwell
2008-06-20gallium: s/feadback/feedback/, duhBrian
2008-06-20gallium: fix invalid call to draw_set_mapped_constant_buffer()Brian Paul
We were indexing sp_constants[i] outside the loop so i was 2. Replace i with PIPE_SHADER_VERTEX. Also, replace magic '2' with PIPE_SHADER_TYPES in a few places.
2008-06-20gallium: fix some surface usage bugsBrian Paul
When a surface is created with GPU_WRITE that really means "GPU render" and that can involve reads (blending). Set surface usage to PIPE_BUFFER_USAGE_CPU_READ + WRITE. Fixes progs/demos/lodbias demo. Also, mark texture as 'modified' when mapped for writing so that the tile cache can know when to freshen a cached tile. Fixes glTexSubImage2D().
2008-06-20egl: added cpp assertions/sanity checksBrian Paul
2008-06-20mesa: init ctx->RenderModeBrian Paul
2008-06-20egl: added null ptr checkBrian Paul
2008-06-20mesa: GL_BYTE vertex/texcoord arraysBrian Paul
2008-06-20mesa: initial support for fixed-pt vertex arraysBrian Paul
2008-06-20mesa: refactor: move initialization of DefaultPacking state.Brian Paul
2008-06-20gallium: always need st_init-blit()Brian Paul
2008-06-20gallium: remove unneeded #includeBrian Paul
2008-06-20mesa: fix errors in prev commitBrian Paul
2008-06-20mesa: revamp glBlendFunc loopbackBrian Paul
2008-06-20mesa: added _vbo_Materialfv()Brian Paul
2008-06-20mesa: _vbo_Color4f, _vbo_Normal3f, _vbo_MultiTexCoord4f functionsBrian Paul
2008-06-20mesa: fix some FEATURE_x testsBrian Paul
2008-06-20egl: added null ptr checksBrian Paul
2008-06-20egl: implment EGL_LARGEST_PBUFFER queryBrian Paul
2008-06-20egl: added null ptr checkBrian Paul
2008-06-20egl: default API should be ESBrian Paul
2008-06-20gallium: assorted FEATURE testsBrian Paul
2008-06-20gallium: remove unneeded #includeBrian Paul
2008-06-20mesa: test for FEATURE_ATI_fragment_shaderBrian Paul
2008-06-19egl: fix assorted context-related bugsBrian Paul
Move memset() to proper place. Added EGL_CONTEXT_CLIENT_VERSION query. Fix bad return EGL_FALSE -> EGL_TRUE.
2008-06-19gallium: new st_api.c file with token symbol for identifying the APIBrian Paul
2008-06-19gallium: remove unused varsBrian Paul
2008-06-19egl: use dlsym() to try to identify APIsBrian Paul
2008-06-19egl: clean up prototype code, new _eglFindAPIs() function.Brian Paul
2008-06-19i915: Fixed cubemap layoutsJakob Bornecrantz
Apprently we shouldn't do all the advanced layout operation for none compressed formats. The compressed code was also broken, its currently disabled, but should be fixed once i915simple starts to support compressed formats.
2008-06-19gallium: Handle malloc failure.José Fonseca
2008-06-19i915: Refractored and clean up i915_texture.cJakob Bornecrantz
2008-06-19gallium: Add extra parenthesis as advised by gcc.José Fonseca
2008-06-19util: Add missing format names.Michal Krol
2008-06-19draw: Fix MSVC integer size conversion warning.José Fonseca
2008-06-19Parse the section:offset instead of the rva+base when reading mapfiles.José Fonseca
2008-06-18gallium: additional fixes to ensure even number of vertices per bufferBrian Paul
2008-06-18gallium: split long prims into chunks with an even number of verticesBrian Paul
This fixes culling "parity" errors when splitting long tri strips. Splitting strips into chunks with an odd number of vertices causes front/back-face orientation to get reversed and upsets culling.
2008-06-18mesa: Fix bug in _mesa_swizzle_ubyte_imageBrian Paul
2008-06-18tests: Added a test for a strange bug in texstore_a8Jakob Bornecrantz
2008-06-18mesa: add fwd decl of fill_in_entrypoint_offset()Brian Paul