Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-06-23 | nouveau: update for interface changes + hack around gallium x86_64 bustage | Ben Skeggs | |
2008-06-23 | Merge remote branch 'upstream/gallium-0.1' into nouveau-gallium-0.1 | Ben Skeggs | |
Conflicts: configs/default | |||
2008-06-22 | draw: fix non-i386 builds | Keith Whitwell | |
2008-06-21 | Update for extra vertex attributes | Patrice Mandin | |
2008-06-21 | nv30: Add state for blend | Patrice Mandin | |
2008-06-21 | nv30: Update nouveau_class.h to get its proper defines instead of using nv40 ↵ | Patrice Mandin | |
ones | |||
2008-06-20 | gallium: s/feadback/feedback/, duh | Brian | |
2008-06-20 | gallium: 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-20 | gallium: fix some surface usage bugs | Brian 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-20 | egl: added cpp assertions/sanity checks | Brian Paul | |
2008-06-20 | mesa: init ctx->RenderMode | Brian Paul | |
2008-06-20 | egl: added null ptr check | Brian Paul | |
2008-06-20 | nv30: Add separate nv30 state stuff for fb, based on nv40 one, need to use ↵ | Patrice Mandin | |
it now | |||
2008-06-20 | mesa: GL_BYTE vertex/texcoord arrays | Brian Paul | |
2008-06-20 | mesa: initial support for fixed-pt vertex arrays | Brian Paul | |
2008-06-20 | mesa: refactor: move initialization of DefaultPacking state. | Brian Paul | |
2008-06-20 | gallium: always need st_init-blit() | Brian Paul | |
2008-06-20 | gallium: remove unneeded #include | Brian Paul | |
2008-06-20 | mesa: fix errors in prev commit | Brian Paul | |
2008-06-20 | mesa: revamp glBlendFunc loopback | Brian Paul | |
2008-06-20 | mesa: added _vbo_Materialfv() | Brian Paul | |
2008-06-20 | mesa: _vbo_Color4f, _vbo_Normal3f, _vbo_MultiTexCoord4f functions | Brian Paul | |
2008-06-20 | mesa: fix some FEATURE_x tests | Brian Paul | |
2008-06-20 | egl: added null ptr checks | Brian Paul | |
2008-06-20 | egl: implment EGL_LARGEST_PBUFFER query | Brian Paul | |
2008-06-20 | egl: added null ptr check | Brian Paul | |
2008-06-20 | egl: default API should be ES | Brian Paul | |
2008-06-20 | gallium: assorted FEATURE tests | Brian Paul | |
2008-06-20 | gallium: remove unneeded #include | Brian Paul | |
2008-06-20 | mesa: test for FEATURE_ATI_fragment_shader | Brian Paul | |
2008-06-19 | egl: fix assorted context-related bugs | Brian Paul | |
Move memset() to proper place. Added EGL_CONTEXT_CLIENT_VERSION query. Fix bad return EGL_FALSE -> EGL_TRUE. | |||
2008-06-19 | gallium: new st_api.c file with token symbol for identifying the API | Brian Paul | |
2008-06-19 | gallium: remove unused vars | Brian Paul | |
2008-06-19 | egl: use dlsym() to try to identify APIs | Brian Paul | |
2008-06-19 | egl: clean up prototype code, new _eglFindAPIs() function. | Brian Paul | |
2008-06-19 | i915: Fixed cubemap layouts | Jakob 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-19 | gallium: Handle malloc failure. | José Fonseca | |
2008-06-19 | i915: Refractored and clean up i915_texture.c | Jakob Bornecrantz | |
2008-06-19 | gallium: Add extra parenthesis as advised by gcc. | José Fonseca | |
2008-06-19 | util: Add missing format names. | Michal Krol | |
2008-06-19 | draw: Fix MSVC integer size conversion warning. | José Fonseca | |
2008-06-19 | Parse the section:offset instead of the rva+base when reading mapfiles. | José Fonseca | |
2008-06-18 | gallium: additional fixes to ensure even number of vertices per buffer | Brian Paul | |
2008-06-18 | gallium: split long prims into chunks with an even number of vertices | Brian 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-18 | mesa: Fix bug in _mesa_swizzle_ubyte_image | Brian Paul | |
2008-06-18 | tests: Added a test for a strange bug in texstore_a8 | Jakob Bornecrantz | |
2008-06-18 | mesa: add fwd decl of fill_in_entrypoint_offset() | Brian Paul | |
2008-06-18 | gallium: added new st_set_framebuffer_surface() | Brian Paul | |
This allows the winsys to explicitly specify gallium surfaces for a framebuffer object. | |||
2008-06-18 | mesa: fix ReadBuffer initialization | Brian Paul | |
2008-06-18 | egl: use RTLD_LAZY | Brian Paul | |