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-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-26Cleanup: blank lines over doxy headersCampbell Barton
2019-01-19Cleanup: add trailing commasCampbell Barton
Prevents clang-format merging into a single line.
2019-01-10Cleanup: end bgl macros w/ semicolonCampbell Barton
Needed for clang-format.
2018-10-08Cleanup: rename checks for Python struct stringsCampbell Barton
Using 'format' prefix made this read as if t was for string formatting. Use 'PyC_StructFmt' prefix instead since these values are compatible with formatting from Python's 'struct' module.
2018-10-07CPython: py_capi_utils: use more descriptive names for format string utilities.mano-wii
2018-10-06Cleanup: use the naming convention in py_capi_utilsmano-wii
And use inline functions instead of preprocessor directives.
2018-10-06Cleanup: use new format string utilitymano-wii
2018-09-24BGL: Wrap glBlitFramebuffermano-wii
2018-06-04Merge branch 'master' into blender2.8Campbell Barton
2018-06-04Cleanup: strip trailing space in Python moduleCampbell Barton
2018-04-14BGL: Expose OpenGL API for FrameBuffers and RenderBuffers.Germano
2017-10-23Fix OpenGL extension report in system info operator.Antony Riakiotakis
2017-10-18Merge branch 'master' into blender2.8Campbell Barton
2017-10-17Fix T53074: Use the pybuffer->itemsize to get the corresponding GLtypeGermano
It seems that `typestr` does not always define the final size of the element. And it varies by operating system. Then use the `typestr` only to know the itemtype is `float` type or not.
2017-10-06Merge branch 'master' into blender28Campbell Barton
2017-10-06Cleanup: styleCampbell Barton
2017-09-28Merge branch 'master' into blender2.8Sergey Sharybin
2017-09-28Cleanup: switch fall-through warningCampbell Barton
2017-09-27bgl module: extend `gl_buffer_type_from_py_format_char` function to work ↵Germano
with more string formats Only basic types of character codes were being used
2017-09-27Merge branch 'master' into blender2.8Campbell Barton
2017-09-27Cleanup: warningCampbell Barton
2017-09-27bgl module: Interpret a buffer as a bgl.BufferGermano
Differential Revision: https://developer.blender.org/D2857
2017-04-18BGL: Remove deprecated enumsDalai Felinto
Note: The enums that are deprecated and supported are still there
2017-03-13OpenGL: remove packed imm mode functions from Python APIMike Erwin
These are from the ARB_vertex_type_2_10_10_10_rev extension that became part of OpenGL 3.3. So they are new, but only exist for compatibility with immediate mode, which is old. Related to T49165 (general OpenGL upgrade)
2017-03-13OpenGL: remove GLU functions from Python APIMike Erwin
Part of T49042
2017-03-01Cleanup: warningsCampbell Barton
2017-02-26Fix compiler warnings on macOS / clang / c++11.Brecht Van Lommel
2016-11-19bgl do not bind parts of OpenGL that are not exposed in core profilesMartijn Berger
2016-07-02Fix typo in bgl.Buffer report functionThomas Szepe
A GL_INT buffer was reported as GL_BYTE.
2016-03-04Cleanup: suspicious use of commasCampbell Barton
2015-09-09bgl: fix implicit overflowCampbell Barton
2015-09-09bgl: disable some defines not found in mesa 7Campbell Barton
2015-09-09Fixes T46060 Regenerated the full list of constants we should exposeMartijn Berger
2015-09-01Don't use GCC-only pragma for all compilersSergey Sharybin
2015-08-03Fix bgl so that get-methods that take a string use strings instead of bgl ↵Martijn Berger
buffer objects again
2015-07-31Docs: doxy correctionsCampbell Barton
2015-07-24Cleanup: comments (remove outdated & update)Campbell Barton
2015-07-24PyAPI: update bgl to OpenGL 3.3Martijn Berger
Adds (currently unused) deprecated option so we can remove support for older API versions.
2015-07-24Cleanup: remove redundant __doc__ from bglCampbell Barton
2015-07-24Cleanup: move defines inside bgl C sourceCampbell Barton
- remove number-of-args arg from BGL_Wrap. - use doxy groups.
2014-10-08Ghost Context RefactorJason Wilkins
https://developer.blender.org/D643 Separates graphics context creation from window code in Ghost so that they can vary separately.
2014-08-28Add debug information for maximum opengl limits in system infoAntony Riakiotakis
generation.
2014-07-19Defines: replace ELEM3-16 with ELEM(...), that can take varargsCampbell Barton
2014-06-03Code cleanup: replace macro with function to reduce binary sizeCampbell Barton
2014-04-26Code cleanup: use 'const' for arrays (python)Campbell Barton
2014-02-22Code cleanup: styleCampbell Barton