diff --git a/docs/devinfo.html b/docs/devinfo.html index 8d20eea3c56..c7e4171a9cb 100644 --- a/docs/devinfo.html +++ b/docs/devinfo.html @@ -17,55 +17,15 @@
-To add a new GL extension to Mesa you have to do at least the following. -
- #ifndef GL_EXT_the_extension_name - #define GL_EXT_the_extension_name 1 - /* declare the new enum tokens */ - /* prototype the new functions */ - /* TYPEDEFS for the new functions */ - #endif --
gl_extensions struct in mtypes.h
-extensions.c file.
-Mesa's code style has changed over the years. Here's the latest. @@ -160,7 +120,8 @@ of bool, true, and src/mesa/state_tracker/st_glsl_to_tgsi.cpp can serve as examples.
-You should always run the Mesa Testsuite before submitting patches. @@ -184,7 +145,7 @@ re-sending the whole series). Using --in-reply-to makes it harder for reviewers to accidentally review old patches.
-If you want a commit to be applied to a stable branch, @@ -221,7 +182,7 @@ the upcoming stable release can always be seen on the Mesa Stable Queue page. -
These are the instructions for making a new Mesa release. @@ -543,6 +505,56 @@ release announcement:
+ ++To add a new GL extension to Mesa you have to do at least the following. + +
+ #ifndef GL_EXT_the_extension_name + #define GL_EXT_the_extension_name 1 + /* declare the new enum tokens */ + /* prototype the new functions */ + /* TYPEDEFS for the new functions */ + #endif ++
gl_extensions struct in mtypes.h
+extensions.c file.
+