aboutsummaryrefslogtreecommitdiffstats
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
...
* docs: Mark ARB_ES3_compatibility as done.Matt Turner2013-03-211-1/+1
|
* docs: import release notes for 9.1.1, add news itemIan Romanick2013-03-192-0/+241
| | | | Signed-off-by: Ian Romanick <[email protected]>
* docs: rewrite the OSMesa info / instructionsBrian Paul2013-03-121-40/+25
| | | | Reviewed-by: José Fonseca <[email protected]>
* mesa: Remove unused version #defines from version.h.Matt Turner2013-03-121-2/+0
| | | | Reviewed-by: Eric Anholt <[email protected]>
* docs: document another Viewperf bugBrian Paul2013-03-081-0/+29
|
* docs: Mark some things done in GL3.txtChris Forbes2013-03-021-2/+2
|
* docs: add news item for mesa-demos 8.1.0 releaseAndreas Boll2013-02-251-0/+9
|
* docs: import release notes for 9.1, add news itemAndreas Boll2013-02-252-2/+14
|
* docs: import release notes for 9.0.3, add news itemAndreas Boll2013-02-213-0/+256
|
* docs: Mark a few things done in GL3.txt.Kenneth Graunke2013-02-111-2/+2
|
* docs: document removal of makedepend build dependencyAndreas Boll2013-02-111-0/+1
| | | | | | | Build dependency removed with 424f2008814ed9047628c40ccd4258a8a9fd8299 Reviewed-by: Matt Turner <[email protected]>
* docs: update making a new mesa release infoAndreas Boll2013-02-111-4/+8
| | | | Reviewed-by: Brian Paul <[email protected]>
* docs: use proper title for index.htmlAndreas Boll2013-02-111-1/+1
| | | | Reviewed-by: Brian Paul <[email protected]>
* docs: mention some other supported APIsAndreas Boll2013-02-111-2/+2
| | | | | | v2: add ES3 Reviewed-by: Brian Paul <[email protected]> (v1)
* docs: update sourcetreeAndreas Boll2013-02-111-7/+5
| | | | | | | | glsl directory is located in src and not in src/egl v2: remove ppc, move glapi from src/mesa to src/mapi Reviewed-by: Brian Paul <[email protected]>
* docs: replace CVS with gitAndreas Boll2013-02-111-1/+1
| | | | Reviewed-by: Brian Paul <[email protected]>
* nv50,nvc0: fix/enable texture buffer objectsChristoph Bumiller2013-01-301-1/+1
|
* docs/relnotes-9.1: document new features in radeon driversMarek Olšák2013-01-291-0/+2
|
* docs: more VMware guest driver info, tipsBrian Paul2013-01-291-0/+17
|
* docs: List new extensions added in Mesa 9.1Matt Turner2013-01-281-1/+8
| | | | | | I did not list the *_get_program_binary extensions since they're not useful to anyone with their current implementation (that supports 0 binary formats).
* GL3.txt: i965 supports ARB_base_instanceMatt Turner2013-01-221-1/+1
| | | | Added in commit cdd3f549.
* docs: import release notes for 9.0.2, add news itemAndreas Boll2013-01-223-0/+299
|
* i965: Add support for GL_ARB_texture_buffer_object_rgb32.Eric Anholt2013-01-181-1/+1
| | | | | | Tested with piglit ARB_texture_buffer_object/formats. Reviewed-by: Kenneth Graunke <[email protected]>
* docs: minor updates to VMware guest driver docsBrian Paul2013-01-151-3/+4
| | | | The DRM's --enable-vmwgfx-experimental-api flag isn't needed anymore.
* docs/GL3.txt: update GL3 status for r600g.Dave Airlie2013-01-121-4/+4
| | | | Signed-off-by: Dave Airlie <[email protected]>
* Remove configs/{current,default}Matt Turner2013-01-101-2/+0
|
* docs: add ARB_texture_buffer_object_rgb32Dave Airlie2012-12-162-1/+2
| | | | Signed-off-by: Dave Airlie <[email protected]>
* i965: expose ARB_texture_cube_map_arrayChris Forbes2012-12-141-1/+1
| | | | | | | | | V3: Put enable in an existing block rather than making a new one for no good reason. Signed-off-by: Chris Forbes <[email protected]> Reviewed-by: Eric Anholt <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]>
* docs: Mark some features in GL3.txt as done for r600Jason Wood2012-11-291-3/+3
| | | | Signed-off-by: Marek Olšák <[email protected]>
* i965: Enable ARB_vertex_type_2_10_10_10_rev on Gen4+.Chris Forbes2012-11-261-1/+1
| | | | | | | | v2 (Kayden): Move the enable into an existing intel->gen >= 4 block (as suggested by Ian). Signed-off-by: Chris Forbes <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]>
* docs: import release notes for 9.0.1, add news itemAndreas Boll2012-11-173-0/+176
|
* docs: add note about removal of OpenVMS supportAndreas Boll2012-11-161-0/+1
|
* Remove OpenVMS supportMatt Turner2012-11-161-38/+0
| | | | | | | | | | Not maintained since 2008. Doubtful that it's worked in quite a while. Also see commit 32ac8cb05 which removed VMS stuff from Makefile in 2009. Cc: Jouk Jansen <[email protected]> Reviewed-by: Brian Paul <[email protected]> Signed-off-by: Andreas Boll <[email protected]>
* docs: update with ARB_texture_cube_map_array supportDave Airlie2012-11-092-1/+2
| | | | | | just mention softpipe is done, r600g will come soon. Signed-off-by: Dave Airlie <[email protected]>
* vbo: fix glVertexAttribI* functionsMarek Olšák2012-11-061-2/+1
| | | | | | | | | | | | | | | | | | | | | | The functions were broken, because they converted ints to floats. Now we can finally advertise OpenGL 3.0. ;) In this commit, the vbo module also tracks the type for each attrib in addition to the size. It can be one of FLOAT, INT, UNSIGNED_INT. The little ugliness is the vertex attribs are declared as floats even though there may be integer values. The code just copies integer values into them without any conversion. This implementation passes the glVertexAttribI piglit test which I am going to commit in piglit soon. The test covers vertex arrays, immediate mode and display lists. NOTE: This is a candidate for the stable branches. Reviewed-by: Brian Paul <[email protected]> v2: cosmetic changes as suggested by Brian
* gallium: expose ARB_map_buffer_alignment on RadeonMarek Olšák2012-10-312-2/+2
| | | | | | | | Reviewed-by: Brian Paul <[email protected]> v2: update relnotes-9.1 v3: use align_malloc and align_free for malloced buffers in r300g v4: document the new CAP in the docs
* docs: add another fixed bug to mesa 8.0.5 release notesAndreas Boll2012-10-241-0/+2
| | | | | Reported-by: Matt Turner <[email protected]> Signed-off-by: Andreas Boll <[email protected]>
* docs: Add 8.0.5 release notesAndreas Boll2012-10-243-0/+271
| | | | Signed-off-by: Andreas Boll <[email protected]>
* docs: GL_ARB_texture_storage is supported for all gallium driversBrian Paul2012-10-221-1/+1
|
* docs: add note about removal of GL_NV_fragment_programAndreas Boll2012-10-161-0/+1
|
* docs: Add note about removal of GL_NV_vertex_program.Eric Anholt2012-10-151-0/+2
|
* docs: start release notes file for 9.1Andreas Boll2012-10-112-0/+65
|
* docs: add missing release dateAndreas Boll2012-10-091-0/+2
|
* docs: update release notes for 9.0Andreas Boll2012-10-091-2/+4
|
* docs: add news item for 9.0 releaseAndreas Boll2012-10-091-0/+8
| | | | | | | Reviewed-by: Brian Paul <[email protected]> ported manually from 8e73273cb95626d9def012eeb508160e4022ff60
* docs: update FAQAndreas Boll2012-10-091-19/+24
| | | | | | | | | | | Reported-by: Fabio Pedretti <[email protected]> v2: (Chad Versace <[email protected]>) - Rewrite FAQ - proper place for installing mesa. v3: fix some typos Reviewed-by: Chad Versace <[email protected]>
* docs: add link to the GLSL compiler pageAndreas Boll2012-10-031-0/+1
| | | | | | This reverts commit 9e0931e355a21ff9902a4127cc63b392d8def0cd Reviewed-by: Brian Paul <[email protected]>
* docs: update shading documentationAndreas Boll2012-10-031-8/+5
| | | | Reviewed-by: Brian Paul <[email protected]>
* docs/helpwanted: cleanup todo list linksAndreas Boll2012-10-021-14/+24
| | | | | | | split into common and driver specific To-Do lists add an explanation for each To-Do list Reviewed-by: Brian Paul <[email protected]>
* docs: document how to apply a candidate to a stable branchAndreas Boll2012-10-021-0/+8
| | | | Reviewed-by: Brian Paul <[email protected]>