(TextureSpecification specification)
| 58 | public final TextureSpecification specification; |
| 59 | protected boolean bindless; |
| 60 | boolean isDoubleBuffered = true; |
| 61 | AtomicInteger pendingUploads = new AtomicInteger(0); |
| 62 | int boundCount = 0; |
| 63 | int uploadCount = 0; |
| 64 | AtomicReference<Runnable> postDrawQueue = new AtomicReference<>(); |
| 65 | |
| 66 | public Texture(TextureSpecification specification) { |
| 67 | this.specification = specification; |
| 68 | if (this.specification.forceSingleBuffered) setIsDoubleBuffered(false); |
| 69 | |
| 70 | if (specification.source != null) { |
nothing calls this directly
no test coverage detected