Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/util/util_time.cpp
| Show All 10 Lines | |||||
| * distributed under the License is distributed on an "AS IS" BASIS, | * distributed under the License is distributed on an "AS IS" BASIS, | ||||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||||
| * See the License for the specific language governing permissions and | * See the License for the specific language governing permissions and | ||||
| * limitations under the License. | * limitations under the License. | ||||
| */ | */ | ||||
| #include <stdlib.h> | #include <stdlib.h> | ||||
| #include "util_time.h" | #include "util/util_time.h" | ||||
| #include "util_windows.h" | #include "util/util_windows.h" | ||||
| #ifdef _WIN32 | #ifdef _WIN32 | ||||
| CCL_NAMESPACE_BEGIN | CCL_NAMESPACE_BEGIN | ||||
| double time_dt() | double time_dt() | ||||
| { | { | ||||
| __int64 frequency, counter; | __int64 frequency, counter; | ||||
| ▲ Show 20 Lines • Show All 52 Lines • Show Last 20 Lines | |||||