Lines Matching refs:new
7 To add a new GL extension to Mesa you have to do at least the following.
16 /* declare the new enum tokens */
17 /* prototype the new functions */
18 /* TYPEDEFS for the new functions */
22 - In the ``src/mapi/glapi/gen/`` directory, add the new extension
26 - Add a new entry to the ``gl_extensions`` struct in ``mtypes.h`` if
29 - Add a new entry to the ``src/mesa/main/extensions_table.h`` file.
31 extension, similar to the new one, that's already implemented in Mesa
33 - If the new extension adds new GL state, the functions in ``get.c``,
34 ``enable.c`` and ``attrib.c`` will most likely require new code.
35 - To determine if the new extension is active in the current context,
39 should be updated with details about the new extensions functions.