doxygen: blender/blenlib tagged.

This commit is contained in:
Nathan Letwory
2011-02-27 20:37:56 +00:00
parent cfd54244cc
commit 7900b5949f
48 changed files with 238 additions and 0 deletions

View File

@@ -26,6 +26,11 @@
*
* ***** END GPL LICENSE BLOCK *****
*/
/** \file blender/blenlib/PIL_dynlib.h
* \ingroup bli
*/
#ifndef __PIL_DYNLIB_H__
#define __PIL_DYNLIB_H__

View File

@@ -29,6 +29,11 @@
*
* ***** END GPL LICENSE BLOCK *****
*/
/** \file blender/blenlib/PIL_time.h
* \ingroup bli
*/
#ifndef PIL_TIME_H
#define PIL_TIME_H

View File

@@ -29,6 +29,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
/** \file blender/blenlib/intern/BLI_args.c
* \ingroup bli
*/
#include <ctype.h> /* for tolower */
#include "MEM_guardedalloc.h"

View File

@@ -31,6 +31,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
/** \file blender/blenlib/intern/BLI_callbacks.h
* \ingroup bli
*/
#ifndef BLI_CALLBACKS_H
#define BLI_CALLBACKS_H

View File

@@ -28,6 +28,11 @@
* Dynamically sized string ADT
*/
/** \file blender/blenlib/intern/BLI_dynstr.c
* \ingroup bli
*/
#include <stdarg.h>
#include <string.h>

View File

@@ -28,6 +28,11 @@
* A general (pointer -> pointer) hash table ADT
*/
/** \file blender/blenlib/intern/BLI_ghash.c
* \ingroup bli
*/
#include "MEM_guardedalloc.h"
#include "BLI_utildefines.h"

View File

@@ -28,6 +28,11 @@
* A heap / priority queue ADT.
*/
/** \file blender/blenlib/intern/BLI_heap.c
* \ingroup bli
*/
#include <string.h>
#include "MEM_guardedalloc.h"

View File

@@ -26,6 +26,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
/** \file blender/blenlib/intern/BLI_kdopbvh.c
* \ingroup bli
*/
#include <assert.h>
#include "MEM_guardedalloc.h"

View File

@@ -28,6 +28,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
/** \file blender/blenlib/intern/BLI_kdtree.c
* \ingroup bli
*/
#include "MEM_guardedalloc.h"

View File

@@ -28,6 +28,11 @@
* Support for linked lists.
*/
/** \file blender/blenlib/intern/BLI_linklist.c
* \ingroup bli
*/
#include "MEM_guardedalloc.h"
#include "BLI_linklist.h"
#include "BLI_memarena.h"

View File

@@ -28,6 +28,11 @@
* Efficient memory allocation for lots of similar small chunks.
*/
/** \file blender/blenlib/intern/BLI_memarena.c
* \ingroup bli
*/
#include "MEM_guardedalloc.h"

View File

@@ -26,6 +26,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
/** \file blender/blenlib/intern/BLI_mempool.c
* \ingroup bli
*/
/*
Simple, fast memory allocator for allocating many elements of the same size.
*/

View File

@@ -25,6 +25,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
/** \file blender/blenlib/intern/DLRB_tree.c
* \ingroup bli
*/
#include "MEM_guardedalloc.h"
#include "BLI_blenlib.h"

View File

@@ -21,6 +21,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
/** \file blender/blenlib/intern/boxpack2d.c
* \ingroup bli
*/
#include <stdlib.h> /* for qsort */
#include "MEM_guardedalloc.h"

View File

@@ -26,6 +26,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
/** \file blender/blenlib/intern/bpath.c
* \ingroup bli
*/
#include <sys/stat.h>
#include <string.h>

View File

@@ -21,6 +21,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
/** \file blender/blenlib/intern/cpu.c
* \ingroup bli
*/
#include "BLI_cpu.h"
int BLI_cpu_support_sse2(void)

View File

@@ -26,6 +26,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
/** \file blender/blenlib/intern/dynamiclist.h
* \ingroup bli
*/
#ifndef B_DYNAMIC_LIST_H
#define B_DYNAMIC_LIST_H

View File

@@ -27,6 +27,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
/** \file blender/blenlib/intern/dynlib.c
* \ingroup bli
*/
#include <stdlib.h>
#include "../PIL_dynlib.h"

View File

@@ -28,6 +28,11 @@
* A general (pointer -> pointer) hash table ADT
*/
/** \file blender/blenlib/intern/edgehash.c
* \ingroup bli
*/
#include <stdlib.h>
#include <string.h>

View File

@@ -27,6 +27,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
/** \file blender/blenlib/intern/fileops.c
* \ingroup bli
*/
#include <string.h>
#include <stdio.h>

View File

@@ -1,3 +1,6 @@
/** \file blender/blenlib/intern/fnmatch.c
* \ingroup bli
*/
/* Copyright (C) 1991, 1992, 1993, 1996, 1997 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify

View File

@@ -30,6 +30,11 @@
* Code that uses exotic character maps is present but commented out.
*/
/** \file blender/blenlib/intern/freetypefont.c
* \ingroup bli
*/
#ifdef WIN32
#pragma warning (disable:4244)
#endif

View File

@@ -23,6 +23,11 @@
* graph.c: Common graph interface and methods
*/
/** \file blender/blenlib/intern/graph.c
* \ingroup bli
*/
#include <float.h>
#include <math.h>

View File

@@ -26,6 +26,11 @@
*
* ***** END GPL LICENSE BLOCK *****
*/
/** \file blender/blenlib/intern/gsqueue.c
* \ingroup bli
*/
#include <string.h>
#include "MEM_guardedalloc.h"

View File

@@ -29,6 +29,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
/** \file blender/blenlib/intern/jitter.c
* \ingroup bli
*/
#include <math.h>
#include <string.h>
#include "MEM_guardedalloc.h"

View File

@@ -32,6 +32,11 @@
*
*/
/** \file blender/blenlib/intern/listbase.c
* \ingroup bli
*/
#include <string.h>
#include <stdlib.h>

View File

@@ -25,6 +25,11 @@
* ***** END GPL LICENSE BLOCK *****
* */
/** \file blender/blenlib/intern/math_base.c
* \ingroup bli
*/
#include "BLI_math.h"

View File

@@ -25,6 +25,11 @@
* ***** END GPL LICENSE BLOCK *****
* */
/** \file blender/blenlib/intern/math_base_inline.c
* \ingroup bli
*/
#include <float.h>
#include <stdio.h>
#include <stdlib.h>

View File

@@ -25,6 +25,11 @@
* ***** END GPL LICENSE BLOCK *****
* */
/** \file blender/blenlib/intern/math_color.c
* \ingroup bli
*/
#include <assert.h>
#include "BLI_math.h"

View File

@@ -25,6 +25,11 @@
* ***** END GPL LICENSE BLOCK *****
* */
/** \file blender/blenlib/intern/math_geom.c
* \ingroup bli
*/
#include "MEM_guardedalloc.h"

View File

@@ -25,6 +25,11 @@
* ***** END GPL LICENSE BLOCK *****
* */
/** \file blender/blenlib/intern/math_geom_inline.c
* \ingroup bli
*/
#include "BLI_math.h"
#ifndef BLI_MATH_GEOM_INLINE_H

View File

@@ -25,6 +25,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
/** \file blender/blenlib/intern/math_matrix.c
* \ingroup bli
*/
#include <assert.h>
#include "BLI_math.h"

View File

@@ -25,6 +25,11 @@
* ***** END GPL LICENSE BLOCK *****
* */
/** \file blender/blenlib/intern/math_rotation.c
* \ingroup bli
*/
#include <assert.h>
#include "BLI_math.h"

View File

@@ -25,6 +25,11 @@
* ***** END GPL LICENSE BLOCK *****
* */
/** \file blender/blenlib/intern/math_vector.c
* \ingroup bli
*/
#include "BLI_math.h"

View File

@@ -25,6 +25,11 @@
* ***** END GPL LICENSE BLOCK *****
* */
/** \file blender/blenlib/intern/math_vector_inline.c
* \ingroup bli
*/
#include "BLI_math.h"
#ifndef BLI_MATH_VECTOR_INLINE_H

View File

@@ -29,6 +29,11 @@
*
*/
/** \file blender/blenlib/intern/noise.c
* \ingroup bli
*/
#ifdef _WIN32
#pragma warning (disable : 4244) // "conversion from double to float"
#pragma warning (disable : 4305) // "truncation from const double to float"

View File

@@ -29,6 +29,11 @@
* various string, file, list operations.
*/
/** \file blender/blenlib/intern/path_util.c
* \ingroup bli
*/
#include <ctype.h>
#include <string.h>
#include <stdlib.h>

View File

@@ -20,6 +20,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
/** \file blender/blenlib/intern/pbvh.c
* \ingroup bli
*/
#include "DNA_meshdata_types.h"

View File

@@ -27,6 +27,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
/** \file blender/blenlib/intern/rand.c
* \ingroup bli
*/
#include <stdlib.h>
#include <string.h>

View File

@@ -34,6 +34,11 @@
* ***** END GPL LICENSE BLOCK *****
*
*/
/** \file blender/blenlib/intern/rct.c
* \ingroup bli
*/
#include <stdio.h>
#include <math.h>

View File

@@ -28,6 +28,11 @@
* (uit traces) maart 95
*/
/** \file blender/blenlib/intern/scanfill.c
* \ingroup bli
*/
#include "MEM_guardedalloc.h"
#include "BLI_callbacks.h"

View File

@@ -29,6 +29,11 @@
* Some really low-level file thingies.
*/
/** \file blender/blenlib/intern/storage.c
* \ingroup bli
*/
#include <sys/types.h>
#include <stdio.h>
#include <stdlib.h>

View File

@@ -32,6 +32,11 @@
*
*/
/** \file blender/blenlib/intern/string.c
* \ingroup bli
*/
#include <string.h>
#include <stdlib.h>
#include <stdarg.h>

View File

@@ -28,6 +28,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
/** \file blender/blenlib/intern/threads.c
* \ingroup bli
*/
#include <errno.h>
#include <string.h>

View File

@@ -27,6 +27,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
/** \file blender/blenlib/intern/time.c
* \ingroup bli
*/
#include "PIL_time.h"
#ifdef WIN32

View File

@@ -20,6 +20,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
/** \file blender/blenlib/intern/uvproject.c
* \ingroup bli
*/
#include <math.h>
#include "MEM_guardedalloc.h"

View File

@@ -26,6 +26,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
/** \file blender/blenlib/intern/voxel.c
* \ingroup bli
*/
#include "BLI_voxel.h"
#include "BLI_utildefines.h"

View File

@@ -28,6 +28,11 @@
* Windows-posix compatibility layer, windows-specific functions.
*/
/** \file blender/blenlib/intern/winstuff.c
* \ingroup bli
*/
#ifdef WIN32
#include <stdlib.h>