package com.runner; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Use this annotation to have gl in test thread */ @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.METHOD}) public @interface NeedGL { }