Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-04-17ClangFormat: apply to source, most of internCampbell Barton
Apply clang format as proposed in T53211. For details on usage and instructions for migrating branches without conflicts, see: https://wiki.blender.org/wiki/Tools/ClangFormat
2019-02-18doxygen: add newline after \fileCampbell Barton
While \file doesn't need an argument, it can't have another doxy command after it.
2019-02-06Cleanup: remove redundant doxygen \file argumentCampbell Barton
Move \ingroup onto same line to be more compact and make it clear the file is in the group.
2019-02-03Cleanup: trailing commasCampbell Barton
Needed for clan-format not to wrap onto one line.
2019-02-01Cleanup: remove redundant, invalid info from headersCampbell Barton
BF-admins agree to remove header information that isn't useful, to reduce noise. - BEGIN/END license blocks Developers should add non license comments as separate comment blocks. No need for separator text. - Contributors This is often invalid, outdated or misleading especially when splitting files. It's more useful to git-blame to find out who has developed the code. See P901 for script to perform these edits.
2019-01-29Cleanup: replace attrib w/ attrCampbell Barton
Also rename GPUVertexAttribs to GPUVertAttrLayers, avoids confusion with GPUVertAttr which isn't closely related.
2019-01-26Cleanup: blank lines over doxy headersCampbell Barton
2018-11-14minor api docs fixJacques Lucke
2018-11-13Py API Docs: GPUVertFormat documentationJacques Lucke
2018-11-13Py API Docs: CleanupJacques Lucke
2018-10-29PyAPI: remove GPUVertFormat() creation from a listCampbell Barton
We already have `attr_add` method, best not have two ways to do the same thing. See: D3830
2018-10-25PyAPI: rename GPL VertBuf.attr_fill identifier to idCampbell Barton
This is used elsewhere in the API and its a common abbreviation.
2018-10-23Cleanup: rename VertBuf.fill_attribute > attr_fillCampbell Barton
2018-10-10Python GPU: Use PyC_AsArray_FAST in GPUVertBuf.fill_attribute.mano-wii
This allows you to use other types of sequences besides tuples.
2018-10-05GPU Python: optionally init the vertexformat in the vertexbuffer itself.mano-wii
2018-10-05Python API: new GPUVertFormat constructor and vbo.fill_attribute methodJacques Lucke
Reviewer: fclem Differential Revision: https://developer.blender.org/D3760
2018-09-27Python GPU module: replace `PyArg_ParseTupleAndKeywords` by ↵mano-wii
`_PyArg_ParseTupleAndKeywordsFast` part of T47811 ("for faster argument parsing").
2018-09-11GPUVertBuf.fill: support for objects with buffer interface.mano-wii
Differential Revision: https://developer.blender.org/D3684
2018-09-06gpu module: retouching the description of the types.mano-wii
2018-09-06Correct build errorsCampbell Barton
2018-09-06Join the python modules `gpu` and `_gpu` into one.mano-wii
Maybe it's still early to set the new drawing api for python. But joining these two modules is an initial step. ``` >>> gpu. matrix select types ``` ``` >>> gpu.types.GPU Batch( OffScreen( VertBuf( VertFormat( ``` The creation of a new offscreen object is now done by the `GPUOffscreen.__new__` method. Reviewers: campbellbarton, dfelinto Reviewed By: campbellbarton, dfelinto Tags: #bf_blender_2.8 Differential Revision: https://developer.blender.org/D3667