Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2003-06-13 17:54:08 +0400
committerTon Roosendaal <ton@blender.org>2003-06-13 17:54:08 +0400
commit075ce0954b54a3839ff75a0ff4ea6d199b85a32e (patch)
tree0dbfafd0280556498b280ad97b391e5f33c29e06 /source/blender/src/renderwin.c
parent073bed8601fd208d0589a3dc760fd67d1151773b (diff)
- fixed commenting in renderwin.c
Diffstat (limited to 'source/blender/src/renderwin.c')
-rw-r--r--source/blender/src/renderwin.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/src/renderwin.c b/source/blender/src/renderwin.c
index 427d19c85dc..99d61fd8a19 100644
--- a/source/blender/src/renderwin.c
+++ b/source/blender/src/renderwin.c
@@ -632,6 +632,7 @@ static void printrenderinfo_cb(double time, int sample)
#ifdef _WIN32
/* we use the SetTimer here */
+/* WIN32: this function is called all the time, and should not use cpu or resources */
static int test_break()
{
@@ -653,13 +654,14 @@ static int test_break()
else return 0;
}
-
+/* WIN32: init SetTimer callback */
static void init_test_break_callback()
{
;
}
-static void end_test_break_callback()
+/* WIN32: stop SetTimer callback */
+sstatic void end_test_break_callback()
{
;
}
@@ -667,10 +669,7 @@ static void end_test_break_callback()
#else
/* all other OS's support signal(SIGVTALRM) */
-/* this function can be called anywhere during render, it should not eat resources
- or cpu time, can be called a million times or so
-*/
-
+/* WIN32: this function is called all the time, and should not use cpu or resources */
static int test_break()
{
short val;
@@ -693,7 +692,7 @@ static int test_break()
else return 0;
}
-/* this function goes in the signal() callback */
+/* POSIX: this function goes in the signal() callback */
static void interruptESC(int sig)
{
@@ -703,7 +702,7 @@ static void interruptESC(int sig)
signal(SIGVTALRM, interruptESC);
}
-
+/* POSIX: initialize timer and signal */
static void init_test_break_callback()
{
@@ -720,6 +719,7 @@ static void init_test_break_callback()
}
+/* POSIX: stop timer and callback */
static void end_test_break_callback()
{
struct itimerval tmevalue;