@@ -52,12 +52,12 @@ public class TextureImage {
52
52
public enum Access {
53
53
54
54
/**
55
- * The image can only read from in a shader.
55
+ * The image can only be read from in a shader.
56
56
*/
57
57
ReadOnly (true , false , GL2 .GL_READ_ONLY ),
58
58
59
59
/**
60
- * The image can written to in a shader.
60
+ * The image can only be written to in a shader.
61
61
*/
62
62
WriteOnly (false , true , GL2 .GL_WRITE_ONLY ),
63
63
@@ -204,8 +204,8 @@ public void setLevel(int level) {
204
204
* Sets the image layer to bind.
205
205
* <p>
206
206
* If the underlying texture is a one/two/three demensional array,
207
- * cube map, cube map array, two demensional multisample array, then this
208
- * specifies which layer of the array to bind.
207
+ * cube map, cube map array, or two demensional multisample array,
208
+ * then this value specifies which layer of the array to bind.
209
209
* <p>
210
210
* default=-1
211
211
*
@@ -231,9 +231,9 @@ public void setAccess(Access access) {
231
231
}
232
232
233
233
/**
234
+ * Gets the underlying texture wrapped by this TextureImage.
234
235
*
235
- * @return
236
- * @see #setTexture(com.jme3.texture.Texture)
236
+ * @return underlying texture
237
237
*/
238
238
public Texture getTexture () {
239
239
return texture ;
@@ -267,6 +267,7 @@ public int getImageId() {
267
267
}
268
268
269
269
/**
270
+ * Gets the level.
270
271
*
271
272
* @return
272
273
* @see #setLevel(int)
@@ -276,6 +277,7 @@ public int getLevel() {
276
277
}
277
278
278
279
/**
280
+ * Gets the layer.
279
281
*
280
282
* @return
281
283
* @see #setLayer(int)
@@ -285,6 +287,7 @@ public int getLayer() {
285
287
}
286
288
287
289
/**
290
+ * Gets the access hint.
288
291
*
289
292
* @return
290
293
* @see #setAccess(com.jme3.texture.TextureImage.Access)
0 commit comments