IPipelineContext.ts 555 B

1234567891011121314151617
  1. /**
  2. * Class used to store and describe the pipeline context associated with an effect
  3. */
  4. export interface IPipelineContext {
  5. /**
  6. * Gets a boolean indicating that this pipeline context is supporting asynchronous creating
  7. */
  8. isAsync: boolean;
  9. /**
  10. * Gets a boolean indicating that the context is ready to be used (like shaders / pipelines are compiled and ready for instance)
  11. */
  12. isReady: boolean;
  13. /** @hidden */
  14. _handlesSpectorRebuildCallback(onCompiled: (compiledObject: any) => void): void;
  15. }