diff options
author | David Robillard <d@drobilla.net> | 2020-11-26 16:07:34 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-11-26 16:31:35 +0100 |
commit | 81fd21da1cd5aa2835f0193907342bb48d968164 (patch) | |
tree | f3d053c3e5b3135fa1b9a47106ffa5b23f840a19 /src | |
parent | 9de33a8805490274dc03d84a6483bc430bb345ed (diff) | |
download | pugl-81fd21da1cd5aa2835f0193907342bb48d968164.tar.gz pugl-81fd21da1cd5aa2835f0193907342bb48d968164.tar.bz2 pugl-81fd21da1cd5aa2835f0193907342bb48d968164.zip |
Remove file documentation
These will not be used in the Sphinx documentation, and most were
self-explanatory and only there to make the Doxygen index look nice anyway.
Where there was actually useful information, it has been preserved as regular
comments.
Diffstat (limited to 'src')
-rw-r--r-- | src/implementation.c | 5 | ||||
-rw-r--r-- | src/implementation.h | 5 | ||||
-rw-r--r-- | src/mac.h | 5 | ||||
-rw-r--r-- | src/mac.m | 5 | ||||
-rw-r--r-- | src/mac_cairo.m | 5 | ||||
-rw-r--r-- | src/mac_gl.m | 5 | ||||
-rw-r--r-- | src/mac_stub.m | 5 | ||||
-rw-r--r-- | src/mac_vulkan.m | 4 | ||||
-rw-r--r-- | src/stub.h | 5 | ||||
-rw-r--r-- | src/types.h | 5 | ||||
-rw-r--r-- | src/win.c | 5 | ||||
-rw-r--r-- | src/win.h | 5 | ||||
-rw-r--r-- | src/win_cairo.c | 5 | ||||
-rw-r--r-- | src/win_gl.c | 5 | ||||
-rw-r--r-- | src/win_vulkan.c | 4 | ||||
-rw-r--r-- | src/x11.c | 5 | ||||
-rw-r--r-- | src/x11.h | 5 | ||||
-rw-r--r-- | src/x11_cairo.c | 5 | ||||
-rw-r--r-- | src/x11_gl.c | 5 | ||||
-rw-r--r-- | src/x11_vulkan.c | 4 |
20 files changed, 0 insertions, 97 deletions
diff --git a/src/implementation.c b/src/implementation.c index 23bfbde..e842e13 100644 --- a/src/implementation.c +++ b/src/implementation.c @@ -14,11 +14,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/** - @file implementation.c - @brief Platform-independent implementation. -*/ - #include "implementation.h" #include "pugl/pugl.h" diff --git a/src/implementation.h b/src/implementation.h index 6d961a8..8c5398c 100644 --- a/src/implementation.h +++ b/src/implementation.h @@ -14,11 +14,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/** - @file implementation.h - @brief Shared declarations for implementation. -*/ - #ifndef PUGL_IMPLEMENTATION_H #define PUGL_IMPLEMENTATION_H @@ -15,11 +15,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/** - @file mac.h - @brief Shared definitions for MacOS implementation. -*/ - #ifndef PUGL_DETAIL_MAC_H #define PUGL_DETAIL_MAC_H @@ -15,11 +15,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/** - @file mac.m - @brief MacOS implementation. -*/ - #define GL_SILENCE_DEPRECATION 1 #include "mac.h" diff --git a/src/mac_cairo.m b/src/mac_cairo.m index 1b5c667..9a46037 100644 --- a/src/mac_cairo.m +++ b/src/mac_cairo.m @@ -14,11 +14,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/** - @file mac_cairo.m - @brief Cairo graphics backend for MacOS. -*/ - #include "implementation.h" #include "mac.h" #include "stub.h" diff --git a/src/mac_gl.m b/src/mac_gl.m index 8a48578..b29221f 100644 --- a/src/mac_gl.m +++ b/src/mac_gl.m @@ -14,11 +14,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/** - @file mac_gl.m - @brief OpenGL graphics backend for MacOS. -*/ - #include "implementation.h" #include "mac.h" #include "stub.h" diff --git a/src/mac_stub.m b/src/mac_stub.m index 576734f..404d295 100644 --- a/src/mac_stub.m +++ b/src/mac_stub.m @@ -14,11 +14,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/** - @file mac_stub.m - @brief Stub graphics backend for MacOS. -*/ - #include "implementation.h" #include "mac.h" #include "stub.h" diff --git a/src/mac_vulkan.m b/src/mac_vulkan.m index 2d01fd4..c56346c 100644 --- a/src/mac_vulkan.m +++ b/src/mac_vulkan.m @@ -14,10 +14,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/** - @file mac_vulkan.m Vulkan graphics backend for MacOS. -*/ - #define VK_NO_PROTOTYPES 1 #include "implementation.h" @@ -14,11 +14,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/** - @file stub.h - @brief Definition of generic stub backend functions. -*/ - #ifndef PUGL_DETAIL_STUB_H #define PUGL_DETAIL_STUB_H diff --git a/src/types.h b/src/types.h index a7c029a..4e63d43 100644 --- a/src/types.h +++ b/src/types.h @@ -14,11 +14,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/** - @file types.h - @brief Shared internal type definitions. -*/ - #ifndef PUGL_DETAIL_TYPES_H #define PUGL_DETAIL_TYPES_H @@ -14,11 +14,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/** - @file win.c - @brief Windows implementation. -*/ - #include "win.h" #include "implementation.h" @@ -14,11 +14,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/** - @file win.h - @brief Shared definitions for Windows implementation. -*/ - #ifndef PUGL_DETAIL_WIN_H #define PUGL_DETAIL_WIN_H diff --git a/src/win_cairo.c b/src/win_cairo.c index 5b6a738..bab8ea0 100644 --- a/src/win_cairo.c +++ b/src/win_cairo.c @@ -14,11 +14,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/** - @file win_cairo.c - @brief Cairo graphics backend for Windows. -*/ - #include "stub.h" #include "types.h" #include "win.h" diff --git a/src/win_gl.c b/src/win_gl.c index 662baef..fcf511b 100644 --- a/src/win_gl.c +++ b/src/win_gl.c @@ -14,11 +14,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/** - @file win_gl.c - @brief OpenGL graphics backend for Windows. -*/ - #include "stub.h" #include "types.h" #include "win.h" diff --git a/src/win_vulkan.c b/src/win_vulkan.c index 3d6934a..f862716 100644 --- a/src/win_vulkan.c +++ b/src/win_vulkan.c @@ -14,10 +14,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/** - @file win_vulkan.c Vulkan graphics backend for Windows. -*/ - #define VK_NO_PROTOTYPES 1 #include "stub.h" @@ -16,11 +16,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/** - @file x11.c - @brief X11 implementation. -*/ - #define _POSIX_C_SOURCE 199309L #include "x11.h" @@ -14,11 +14,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/** - @file x11.h - @brief Shared definitions for X11 implementation. -*/ - #ifndef PUGL_DETAIL_X11_H #define PUGL_DETAIL_X11_H diff --git a/src/x11_cairo.c b/src/x11_cairo.c index abfabff..3147266 100644 --- a/src/x11_cairo.c +++ b/src/x11_cairo.c @@ -14,11 +14,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/** - @file x11_cairo.c - @brief Cairo graphics backend for X11. -*/ - #include "types.h" #include "x11.h" diff --git a/src/x11_gl.c b/src/x11_gl.c index 64061d1..50b37b8 100644 --- a/src/x11_gl.c +++ b/src/x11_gl.c @@ -14,11 +14,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/** - @file x11_gl.c - @brief OpenGL graphics backend for X11. -*/ - #include "stub.h" #include "types.h" #include "x11.h" diff --git a/src/x11_vulkan.c b/src/x11_vulkan.c index c7ae1b0..b32111c 100644 --- a/src/x11_vulkan.c +++ b/src/x11_vulkan.c @@ -14,10 +14,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/** - @file x11_vulkan.c Vulkan graphics backend for X11. -*/ - #define VK_NO_PROTOTYPES 1 #include "stub.h" |