Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-08-12 | mesa: fpclassify is available with MinGW. | Vinson Lee | |
This patch fixes the MinGW build. | |||
2010-08-12 | mesa: Fix FreeBSD build with llvm enabled. | Vinson Lee | |
On FreeBSD LC_CTYPE_MASK is not available but 'llvm-config --cppflags' adds the compiler flag -D_GNU_SOURCE to the build. | |||
2010-08-10 | mesa: use switch stmt in init_program_limits() | Brian Paul | |
2010-08-10 | mesa: remove obsolete comments | Brian Paul | |
2010-08-10 | mesa: fix comment typo | Brian Paul | |
2010-08-03 | mesa: Reduce header file inclusion in texgen.h. | Vinson Lee | |
texgen.h doesn't use any symbols additionally added by mtypes.h. | |||
2010-08-03 | mesa: Reduce header file inclusion in texcompress_fxt1.h. | Vinson Lee | |
texcompress_fxt1.h doesn't use any additional symbols added by mtypes.h. | |||
2010-08-02 | mesa: Reduce header file inclusion in syncobj.h. | Vinson Lee | |
syncobj.h doesn't use any additional symbols that is added by context.h. | |||
2010-07-31 | mesa: Remove inclusion of compiler.h from mtypes.h. | Vinson Lee | |
mtypes.h does not use any symbols from compiler.h. Also add the required headers for files that depended on symbols from compiler.h but were indirectly including compiler.h through mtypes.h. | |||
2010-07-31 | mesa: Remove unnecessary header from mm.h. | Vinson Lee | |
2010-07-31 | mesa: Add headers containing sybmols used by mm.c. | Vinson Lee | |
2010-07-31 | mesa: Reduce header file inclusion in get.h. | Vinson Lee | |
get.h only needs the GL headers. | |||
2010-07-31 | mesa: Include missing headers in vtxfmt.h. | Vinson Lee | |
Include compiler.h for INLINE symbol. Include mtypes.h for GLcontext symbol. | |||
2010-07-31 | mesa: Include missing header in shared.h. | Vinson Lee | |
Include mtypes.h for GLcontext symbol. | |||
2010-07-31 | mesa: Include missing header in restart.h. | Vinson Lee | |
2010-07-31 | mesa: Include missing headers in renderbuffer.h. | Vinson Lee | |
2010-07-31 | mesa: Include missing header in remap.h. | Vinson Lee | |
Include compiler.h for INLINE symbol. | |||
2010-07-31 | mesa: Remove unnecessary headers. | Vinson Lee | |
2010-07-30 | mesa: Include missing header in pixelstore.h. | Vinson Lee | |
Include mtypes.h for GLcontext symbol. | |||
2010-07-30 | mesa: Include missing headers in nvprogram.h. | Vinson Lee | |
2010-07-30 | mesa: added gl_program::IndirectRegisterFiles field | Brian Paul | |
Now drivers, etc. can know which register files are accessed with indirect addressing. Before we just checked gl_program::NumAddressRegs but didn't know if that was the constant buffer, temp regs, or what. The only user of this new field so far will be the gallium state tracker. | |||
2010-07-30 | mesa: Add missing header to multisample.h. | Vinson Lee | |
Include mtypes.h for GLcontext symbol. | |||
2010-07-30 | mesa: Remove unnecessary header from colormac.h. | Vinson Lee | |
2010-07-30 | mesa: Remove unnecessary headers. | Vinson Lee | |
2010-07-30 | mesa: Include macros.h in files that use symbols from macros.h. | Vinson Lee | |
Don't rely on inclusion of other files that already include macros.h. | |||
2010-07-30 | mesa: Include macros.h in attrib.c for COPY_4FV symbol. | Vinson Lee | |
2010-07-30 | mesa: Reduce clip.h header file inclusion. | Vinson Lee | |
2010-07-29 | mesa: Add missing header to framebuffer.h. | Vinson Lee | |
Include mtypes.h for GLvisual and GLcontext symbols. | |||
2010-07-29 | mesa: Add missing header to fboject.h. | Vinson Lee | |
Add mtypes.h for GLcontext symbol. | |||
2010-07-29 | mesa: Add missing header to texgetimage.h. | Vinson Lee | |
2010-07-29 | mesa: Add missing header to texrender.h. | Vinson Lee | |
Add mtypes.h for GLcontext symbol. | |||
2010-07-29 | mesa: Add missing header and forward declarations to uniforms.h. | Vinson Lee | |
2010-07-29 | mesa: Add missing headers to viewport.h. | Vinson Lee | |
2010-07-29 | mesa: Add missing header to depthstencil.h. | Vinson Lee | |
Add mtypes.h for GLcontext symbol. | |||
2010-07-29 | mesa: Add missing headers to debug.h. | Vinson Lee | |
2010-07-29 | mesa: Reduce clear.h header file inclusion. | Vinson Lee | |
2010-07-29 | mesa: Reduce bufferobj.h header file inclusion. | Vinson Lee | |
Directly include mtypes.h instead of including context.h to include mtypes.h. | |||
2010-07-29 | mesa: Remove unnecessary headers. | Vinson Lee | |
2010-07-28 | mesa: Reduce arrayobj.h header file inclusion. | Vinson Lee | |
Directly include mtypes.h instead of including context.h to include mtypes.h. | |||
2010-07-28 | mesa: Remove unnecessary header. | Vinson Lee | |
2010-07-28 | mesa: Remove unnecessary header. | Vinson Lee | |
2010-07-28 | intel: Implement EGL_KHR_surfaceless extension | Kristian Høgsberg | |
2010-07-23 | mesa: Fix Cygwin build with llvm enabled. | Vinson Lee | |
On Cygwin locale_t in not available but 'llvm-config --cppflags' adds the compiler flag -D_GNU_SOURCE to the build. | |||
2010-07-20 | mesa: call ctx->Driver.ChooseTextureFormat() only when necessary. | Brian Paul | |
When defining mipmap level 'L' and level L-1 exists and the new level's internalFormat matches level L-1's internalFormat, then use the same hw format. Otherwise, do the regular ctx->Driver.ChooseTextureFormat() call. This avoids a problem where we end up choosing different hw formats for different mipmap levels depending on how the levels are defined (glTexImage vs. glCopyTexImage vs. glGenerateMipmap, etc). The root problem is the ChooseTextureFormat() implementation in some drivers uses the user's glTexImage format/type parameters in the choosing heuristic. Later mipmap levels might be generated with different calls (ex: glCopyTexImage()) so we don't always have format/type info and the driver may choose a different format. For more background info see the July 2010 mesa-dev thread "Bug in _mesa_meta_GenerateMipmap" | |||
2010-07-16 | mesa: return retval in _mesa_RenderObjectUnpurgeable() | Brian Paul | |
Found by Vinson with static analysis. NOTE: This is a candidate for the 7.8 branch. | |||
2010-07-15 | mesa: Add error path in compressed_texture_error_check. | Vinson Lee | |
Add error path for unhandled dimensions in compressed_texture_error_check. | |||
2010-07-14 | mesa: fix _mesa_Texture/Render/BufferObjectUnpurgeable() return values | Brian Paul | |
Fixes piglit object_purgeable-api-pbo, object_purgeable-api-vbo and object_purgeable-api-texture failures with swrast. NOTE: This is a candidate for the 7.8 branch. | |||
2010-07-14 | mesa: update assertions and fix refcounting in depth/stencil renderbuffer code | Brian Paul | |
2010-07-14 | mesa: silence a printf warning | Brian Paul | |
2010-07-13 | Merge branch 'mesa-2d-registers' | Zack Rusin | |