Move the Doxygen configuration files into the usual places and integrate with the build system.

This commit is contained in:
Jose Fonseca 2003-05-01 23:32:54 +00:00
parent 6c446ebaa1
commit 69db632a9d
5 changed files with 1082 additions and 15 deletions

View file

@ -345,7 +345,7 @@ WARN_LOGFILE =
# directories like "/usr/src/myproject". Separate the files or directories
# with spaces.
INPUT =
INPUT = ../src/kernel/agpgart-2.5
# If the value of the INPUT tag contains directories, you can use the
# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
@ -488,7 +488,7 @@ GENERATE_HTML = YES
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
# put in front of it. If left blank `html' will be used as the default path.
HTML_OUTPUT = html
HTML_OUTPUT = agpgart
# The HTML_FILE_EXTENSION tag can be used to specify the file extension for
# each generated HTML page (for example: .htm,.php,.asp). If it is left blank

View file

@ -26,6 +26,9 @@ subset:
doxygen math_subset.doxy
doxygen miniglx.doxy
doxygen radeon_subset.doxy
doxygen radeonfb.doxy
doxygen radeondrm.doxy
doxygen agpgart.doxy
clean:
rm -rf \

1058
doxygen/radeondrm.doxy Normal file

File diff suppressed because it is too large Load diff

View file

@ -345,7 +345,7 @@ WARN_LOGFILE =
# directories like "/usr/src/myproject". Separate the files or directories
# with spaces.
INPUT =
INPUT = ../src/kernel/radeonfb-2.5
# If the value of the INPUT tag contains directories, you can use the
# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
@ -488,7 +488,7 @@ GENERATE_HTML = YES
# If a relative path is entered the value of OUTPUT_DIRECTORY will be
# put in front of it. If left blank `html' will be used as the default path.
HTML_OUTPUT = html
HTML_OUTPUT = radeonfb
# The HTML_FILE_EXTENSION tag can be used to specify the file extension for
# each generated HTML page (for example: .htm,.php,.asp). If it is left blank

View file

@ -2,8 +2,13 @@
* \file drm.h
* \brief Header for the Direct Rendering Manager
*
* Created: Mon Jan 4 10:05:05 1999 by faith@precisioninsight.com
* \author Rickard E. (Rik) Faith <faith@valinux.com>
*
* \par Acknowledgements:
* Dec 1999, Richard Henderson <rth@twiddle.net>, move to generic \c cmpxchg.
*/
/*
* Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
* Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
* All rights reserved.
@ -26,14 +31,9 @@
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*
* \author Rickard E. (Rik) Faith <faith@valinux.com>
*
* \par Acknowledgements:
* Dec 1999, Richard Henderson <rth@twiddle.net>, move to generic \c cmpxchg.
*
*/
#ifndef _DRM_H_
#define _DRM_H_
@ -102,10 +102,13 @@ typedef unsigned int drm_drawable_t;
typedef unsigned int drm_magic_t;
/* Warning: If you change this structure, make sure you change
* XF86DRIClipRectRec in the server as well */
/* KW: Actually it's illegal to change either for
/**
* Cliprect.
*
* \warning: If you change this structure, make sure you change
* XF86DRIClipRectRec in the server as well
*
* \note KW: Actually it's illegal to change either for
* backwards-compatibility reasons.
*/
typedef struct drm_clip_rect {
@ -116,6 +119,9 @@ typedef struct drm_clip_rect {
} drm_clip_rect_t;
/**
* Texture region,
*/
typedef struct drm_tex_region {
unsigned char next;
unsigned char prev;