~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to extern/carve/include/carve/timing.hpp

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2012-07-23 08:54:18 UTC
  • mfrom: (14.2.16 sid)
  • mto: (14.2.19 sid)
  • mto: This revision was merged to the branch mainline in revision 42.
  • Revision ID: package-import@ubuntu.com-20120723085418-9foz30v6afaf5ffs
Tags: 2.63a-2
* debian/: Cycles support added (Closes: #658075)
  For now, this top feature has been enabled only
  on [any-amd64 any-i386] architectures because
  of OpenImageIO failing on all others
* debian/: scripts installation path changed
  from /usr/lib to /usr/share:
  + debian/patches/: patchset re-worked for path changing
  + debian/control: "Breaks" field added on yafaray-exporter

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Begin License:
 
2
// Copyright (C) 2006-2011 Tobias Sargeant (tobias.sargeant@gmail.com).
 
3
// All rights reserved.
 
4
//
 
5
// This file is part of the Carve CSG Library (http://carve-csg.com/)
 
6
//
 
7
// This file may be used under the terms of the GNU General Public
 
8
// License version 2.0 as published by the Free Software Foundation
 
9
// and appearing in the file LICENSE.GPL2 included in the packaging of
 
10
// this file.
 
11
//
 
12
// This file is provided "AS IS" with NO WARRANTY OF ANY KIND,
 
13
// INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR
 
14
// A PARTICULAR PURPOSE.
 
15
// End:
 
16
 
 
17
 
 
18
#pragma once
 
19
 
 
20
#include <carve/carve.hpp>
 
21
 
 
22
#ifndef CARVE_USE_TIMINGS
 
23
#define CARVE_USE_TIMINGS 0
 
24
#endif
 
25
 
 
26
namespace carve {
 
27
 
 
28
#if CARVE_USE_TIMINGS
 
29
 
 
30
  class TimingName {
 
31
  public:
 
32
    TimingName(const char *name);
 
33
    int id;  
 
34
  };
 
35
 
 
36
  class TimingBlock {
 
37
  public:
 
38
    /**
 
39
     * Starts timing at the end of this constructor, using the given ID. To 
 
40
     * associate an ID with a textual name, use Timing::registerID.
 
41
     */
 
42
    TimingBlock(int id);  
 
43
    TimingBlock(const TimingName &name);
 
44
    ~TimingBlock();
 
45
  };
 
46
 
 
47
  class Timing {
 
48
  public:
 
49
  
 
50
    /**
 
51
     * Starts timing against a particular ID.
 
52
     */
 
53
    static void start(int id);
 
54
    
 
55
    static void start(const TimingName &id) {
 
56
      start(id.id);
 
57
    }
 
58
  
 
59
    /**
 
60
     * Stops the most recent timing block.
 
61
     */
 
62
    static double stop();
 
63
  
 
64
    /**
 
65
     * This will print out the current state of recorded time blocks. It will 
 
66
     * display the tree of timings, as well as the summaries down the bottom.
 
67
     */
 
68
    static void printTimings();
 
69
    
 
70
    /**
 
71
     * Associates a particular ID with a text string. This is used when 
 
72
     * printing out the timings.
 
73
     */
 
74
    static void registerID(int id, const char *name);
 
75
    
 
76
  };
 
77
  
 
78
#else
 
79
 
 
80
  struct TimingName {
 
81
    TimingName(const char *) {}
 
82
  };
 
83
  struct TimingBlock {
 
84
    TimingBlock(int /* id */) {}
 
85
    TimingBlock(const TimingName & /* name */) {}
 
86
  };
 
87
  struct Timing {
 
88
    static void start(int /* id */) {}
 
89
    static void start(const TimingName & /* id */) {}
 
90
    static double stop() { return 0; }
 
91
    static void printTimings() {}
 
92
    static void registerID(int /* id */, const char * /* name */) {}
 
93
  };
 
94
 
 
95
#endif
 
96
}