()
| 93 | } |
| 94 | |
| 95 | public void backendState() throws Exception { |
| 96 | int[] nativeOrdinals = _nGetBackendStateOrdinals(); |
| 97 | int[] javaOrdinals = { |
| 98 | BackendState.GL_RENDER_TARGET._value, |
| 99 | BackendState.GL_TEXTURE_BINDING._value, |
| 100 | BackendState.GL_VIEW._value, |
| 101 | BackendState.GL_BLEND._value, |
| 102 | BackendState.GL_MSAA_ENABLE._value, |
| 103 | BackendState.GL_VERTEX._value, |
| 104 | BackendState.GL_STENCIL._value, |
| 105 | BackendState.GL_PIXEL_STORE._value, |
| 106 | BackendState.GL_PROGRAM._value, |
| 107 | BackendState.GL_FIXED_FUNCTION._value, |
| 108 | BackendState.GL_MISC._value, |
| 109 | BackendState.GL_ALL._value, |
| 110 | BackendState.ALL._value |
| 111 | }; |
| 112 | TestRunner.assertArrayEquals(nativeOrdinals, javaOrdinals); |
| 113 | } |
| 114 | |
| 115 | public void blendMode() throws Exception { |
| 116 | int[] nativeOrdinals = _nGetBlendModeOrdinals(); |
nothing calls this directly
no test coverage detected