Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-08-05 | st/mesa: Clean up header file inclusion in st_manager.h. | Vinson Lee | |
Include mtypes.h for GLcontext, gl_buffer_index, and GLframebuffer symbols. Include p_compiler.h for boolean symbol. Include st_context.h in st_cb_eglimage.c as it previously included st_context.h indirectly through st_manager.h. | |||
2010-08-05 | glsl: fix atan(0, -1) | Brian Paul | |
Fixes fd.o bug 29388 NOTE: this is a candidate for the 7.8 branch. | |||
2010-08-05 | r600c: tiling require drm 2.6.0, not 2.5.0 | Alex Deucher | |
2010-08-05 | r600: add support for getting the tiling config via drm ioctl (v2) | Alex Deucher | |
Needed for the the 2D tiling span functions. v2: rebase on new kernel, mesa changes Signed-off-by: Alex Deucher <alexdeucher@gmail.com> | |||
2010-08-05 | r600: add new relocs for tiling support | Alex Deucher | |
Signed-off-by: Alex Deucher <alexdeucher@gmail.com> | |||
2010-08-05 | r600: add span support for 2D tiling | Alex Deucher | |
Requires tiling config ioctl support from the drm to use. kms only. Signed-off-by: Alex Deucher <alexdeucher@gmail.com> | |||
2010-08-05 | st/mesa: Remove unnecessary header from st_gl_api.h. | Vinson Lee | |
2010-08-05 | mesa: Include missing header in st_get_mipmap.h. | Vinson Lee | |
Include mtypes.h for GLcontext symbol. Add forward declaration for st_context. | |||
2010-08-05 | st/mesa: Include missing headers in st_format.h. | Vinson Lee | |
2010-08-05 | st/mesa: Add forward delcaration in st_extensions.h. | Vinson Lee | |
2010-08-05 | st/mesa: Add missing headers to st_draw.h. | Vinson Lee | |
2010-08-05 | intel: Check for a NULL src buffer prior to blt | Chris Wilson | |
This can only happen along a malloc failure path, but check anyway. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> | |||
2010-08-05 | intel: Check for region allocation failure. | Chris Wilson | |
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> | |||
2010-08-04 | st/mesa: Add missing header in st_context.c. | Vinson Lee | |
2010-08-04 | st/mesa: Add missing header in st_atom_pixeltransfer.c. | Vinson Lee | |
2010-08-04 | st/mesa: Clean up header file inclusion in st_context.h. | Vinson Lee | |
2010-08-04 | st/mesa: Add missing header in st_cb_xformfb.h. | Vinson Lee | |
2010-08-04 | st/mesa: Clean up st_cb_viewport.h. | Vinson Lee | |
Add inclusion guard. Add forward declaration. | |||
2010-08-04 | st/mesa: Add missing headers in st_cb_texture.h. | Vinson Lee | |
2010-08-05 | dri/nouveau: Don't try to validate uninitialized teximages. | Francisco Jerez | |
2010-08-05 | dri/nv20: Fix some PGRAPH_ERRORs seen with DATA_CHECK enabled. | Francisco Jerez | |
2010-08-05 | dri/nouveau: Fix up software mipmap generation. | Francisco Jerez | |
2010-08-04 | st/mesa: Add forward declaration in st_cb_strings.h. | Vinson Lee | |
2010-08-04 | st/mesa: Add missing header in st_cb_readpixels.h. | Vinson Lee | |
Include mtypes.h for GLcontext symbol. | |||
2010-08-04 | st/mesa: Clean up header file inclusion in st_cb_rasterpos.h. | Vinson Lee | |
2010-08-04 | st/mesa: Add missing header in st_cb_program.h. | Vinson Lee | |
Include mtypes.h for GLcontext symbol. | |||
2010-08-04 | r300/compiler: Remove unnecessary header. | Vinson Lee | |
2010-08-04 | intel: Remove unnecessary header. | Vinson Lee | |
2010-08-04 | st/mesa: Add missing headers in st_cb_flush.h. | Vinson Lee | |
Add forward declarations. Include p_compiler.h for uint symbol. | |||
2010-08-04 | st/mesa: Clean up header inclusion in st_cb_feedback.h. | Vinson Lee | |
Replace mtypes.h with forward declaration. Include compiler.h for INLINE symbol. | |||
2010-08-04 | st/mesa: Add missing headers to st_cb_fbo.h. | Vinson Lee | |
2010-08-04 | st/mesa: Clean up header file inclusion in st_cb_eglimage.h. | Vinson Lee | |
Replace dd.h and mtypes.h with a forward declaration. Include compiler.h for INLINE symbol. | |||
2010-08-04 | st/mesa: Clean up header file inclusion in st_cb_drawtex.h. | Vinson Lee | |
Replace mtypes.h with forward declarations. Include compiler.h for INLINE symbol. | |||
2010-08-04 | st/mesa: Clean up header file inclusion in st_cb_drawpixels.h. | Vinson Lee | |
Replace mtypes.h with forward declarations. Include compiler.h for INLINE symbol. | |||
2010-08-04 | st/mesa: Add forward declaration in st_cb_condrender.h. | Vinson Lee | |
2010-08-04 | st/mesa: Add forward declarations in st_cb_clear.h. | Vinson Lee | |
2010-08-04 | st/mesa: Include missing headers in st_cb_bufferobjects.h. | Vinson Lee | |
Include compiler.h for INLINE symbol. Include mtypes.h for gl_buffer_object symbol. | |||
2010-08-04 | st/mesa: Clean up header file inclusion in st_cb_blit.h. | Vinson Lee | |
Replaced mtypes.h and st_context.h with forward declarations. Added compiler.h for INLINE symbol. | |||
2010-08-04 | st/mesa: Clean up header file inclusion in st_cb_bitmap.h. | Vinson Lee | |
Removed mtypes.h. Include compiler.h for INLINE symbol. Added forward declarations. | |||
2010-08-04 | r600: relax stride/alignment requirements for vertices | Andre Maasikas | |
seems hw can do unaligned accesses and unaligned strides removes extra conversion when using vbo's however I needed to switch 3 component byte format to 4 component formats for tests to pass. Somewhat sililar to GL_SHORT fix done earlier removes assert and gains +2 piglit especially draw-vertices | |||
2010-08-03 | r300/compiler: Always unroll loops when doing loop emulation. | Tom Stellard | |
2010-08-03 | r300/compiler: r500 hw support for break and continue in loops. | Tom Stellard | |
The BGNLOOP and ENDLOOP instructions are now being used correctly, which makes break and continue possible. The deadcode pass has been modified to handle breaks, and the compiler is more careful about which loops are unrolled. | |||
2010-08-03 | r300/compiler: KILP may not always be inside an IF statement. | Tom Stellard | |
2010-08-03 | r300/compiler: Don't unroll loops with continue or break. | Tom Stellard | |
2010-08-03 | st/mesa: Clean up header file inclusion in st_cache.h. | Vinson Lee | |
2010-08-03 | st/mesa: Add forward declarations in st_atom_shader.h. | Vinson Lee | |
2010-08-04 | mesa: increase the relative address offset limit to 4096 in ARB_vp/fp | Marek Olšák | |
Even though the spec says that the limits should be -64/+63, proprietary drivers support much larger relative offsets and some applications do depend on this non-standard behavior. Also program_parse.tab.c has been regenerated. This fixes the parser error: ARB_vp: error: relative address offset too large See also: https://bugs.freedesktop.org/show_bug.cgi?id=28628 4096 * sizeof(vec4) is the maximum size of the constant buffer on NV50. It is not supposed to be a definite hardware limit, it is for the parser not to get in the way and let the underlying driver decide whether it can run the shader or not. | |||
2010-08-03 | st/mesa: Add forward declarations in st_atom_constbuf.h. | Vinson Lee | |
2010-08-03 | st/mesa: Include glheader.h in st_atom.h. | Vinson Lee | |
Include glheader.h for GLenum symbol. | |||
2010-08-03 | mesa: Clean up header file inclusion in m_xform.h. | Vinson Lee | |
Include compiler.h for CONST symbol. Remove config.h as m_xform.h uses no additional symbols from config.h. |