<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Mathias Wein wrote:
<blockquote cite="mid467AE4FB.5070807@aspect-design.de" type="cite">
  <blockquote type="cite">
    <pre wrap="">Also, should the API not assume, for
example, that the same processor that rendered frame 200 will render
frame 201? This assumption could be used to optimize: including
information as to what changed from the last frame to the next frame,
but what if the last frame was done by a totally different computer?
  
    </pre>
  </blockquote>
  <pre wrap=""><!---->
So in my opinion you may safely assume that one context proceeds to the
next frame only after it has finished the previous one.
  </pre>
</blockquote>
This should be obvious, but I'll state it to make sure it's out there.&nbsp;
You should be able to handle the case where the previous frame was not
rendered at all.&nbsp; e.g., if the user jumps to frame 201 and starts
rendering, you cannot assume that 200 was run.&nbsp; So it's okay to use
optimizations where possible, but must gracefully handle the cases
where they don't make sense.<br>
<br>
Having this capability means that if another processor (or computer)
renders frame 200, you'll still get the right answer for frame 201, it
just won't render as quickly as if both frames were rendered on the
same computer.&nbsp; Although presumably, you would be doing this because
you could render both in parallel, so you would still see a speedup...<br>
<br>
-- Early Ehlinger, President, ResPower, Inc.<br>
</body>
</html>