Annotation Type GLThread


  • @Documented
    @Retention(SOURCE)
    @Target(METHOD)
    public @interface GLThread
    Denotes that the annotated method should only be called on the GL thread.

    Example:

    
      @GLThread
      public void deliverResult(D data) { ... }