aboutsummaryrefslogtreecommitdiffstats
path: root/src/classes/com/sun/opengl/impl/mipmap/PixelStorageModes.java
blob: bde3624d24747b2b9f2b07746da058fbea305900 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
/*
 * License Applicability. Except to the extent portions of this file are
 * made subject to an alternative license as permitted in the SGI Free
 * Software License B, Version 1.1 (the "License"), the contents of this
 * file are subject only to the provisions of the License. You may not use
 * this file except in compliance with the License. You may obtain a copy
 * of the License at Silicon Graphics, Inc., attn: Legal Services, 1600
 * Amphitheatre Parkway, Mountain View, CA 94043-1351, or at:
 * 
 * http://oss.sgi.com/projects/FreeB
 * 
 * Note that, as provided in the License, the Software is distributed on an
 * "AS IS" basis, with ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS
 * DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND
 * CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
 * PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
 * 
 * NOTE:  The Original Code (as defined below) has been licensed to Sun
 * Microsystems, Inc. ("Sun") under the SGI Free Software License B
 * (Version 1.1), shown above ("SGI License").   Pursuant to Section
 * 3.2(3) of the SGI License, Sun is distributing the Covered Code to
 * you under an alternative license ("Alternative License").  This
 * Alternative License includes all of the provisions of the SGI License
 * except that Section 2.2 and 11 are omitted.  Any differences between
 * the Alternative License and the SGI License are offered solely by Sun
 * and not by SGI.
 *
 * Original Code. The Original Code is: OpenGL Sample Implementation,
 * Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
 * Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
 * Copyright in any portions created by third parties is as indicated
 * elsewhere herein. All Rights Reserved.
 * 
 * Additional Notice Provisions: The application programming interfaces
 * established by SGI in conjunction with the Original Code are The
 * OpenGL(R) Graphics System: A Specification (Version 1.2.1), released
 * April 1, 1999; The OpenGL(R) Graphics System Utility Library (Version
 * 1.3), released November 4, 1998; and OpenGL(R) Graphics with the X
 * Window System(R) (Version 1.3), released October 19, 1998. This software
 * was created using the OpenGL(R) version 1.2.1 Sample Implementation
 * published by SGI, but has not been independently verified as being
 * compliant with the OpenGL(R) version 1.2.1 Specification.
 */

package com.sun.opengl.impl.mipmap;

/**
 *
 * @author  Administrator
 */
public class PixelStorageModes {

  /**
   * Holds value of property packAlignment.
   */
  private int packAlignment;

  /**
   * Holds value of property packRowLength.
   */
  private int packRowLength;

  /**
   * Holds value of property packSkipRows.
   */
  private int packSkipRows;

  /**
   * Holds value of property packSkipPixels.
   */
  private int packSkipPixels;

  /**
   * Holds value of property packLsbFirst.
   */
  private boolean packLsbFirst;

  /**
   * Holds value of property packSwapBytes.
   */
  private boolean packSwapBytes;

  /**
   * Holds value of property packSkipImages.
   */
  private int packSkipImages;

  /**
   * Holds value of property packImageHeight.
   */
  private int packImageHeight;

  /**
   * Holds value of property unpackAlignment.
   */
  private int unpackAlignment;

  /**
   * Holds value of property unpackRowLength.
   */
  private int unpackRowLength;

  /**
   * Holds value of property unpackSkipRows.
   */
  private int unpackSkipRows;

  /**
   * Holds value of property unpackSkipPixels.
   */
  private int unpackSkipPixels;

  /**
   * Holds value of property unpackLsbFirst.
   */
  private boolean unpackLsbFirst;

  /**
   * Holds value of property unpackSwapBytes.
   */
  private boolean unpackSwapBytes;

  /**
   * Holds value of property unpackSkipImages.
   */
  private int unpackSkipImages;

  /**
   * Holds value of property unpackImageHeight.
   */
  private int unpackImageHeight;
  
  /** Creates a new instance of PixelStorageModes */
  public PixelStorageModes() {
  }

  /**
   * Getter for property packAlignment.
   * @return Value of property packAlignment.
   */
  public int getPackAlignment() {

    return this.packAlignment;
  }

  /**
   * Setter for property packAlignment.
   * @param packAlignment New value of property packAlignment.
   */
  public void setPackAlignment(int packAlignment) {

    this.packAlignment = packAlignment;
  }

  /**
   * Getter for property packRowLength.
   * @return Value of property packRowLength.
   */
  public int getPackRowLength() {

    return this.packRowLength;
  }

  /**
   * Setter for property packRowLength.
   * @param packRowLength New value of property packRowLength.
   */
  public void setPackRowLength(int packRowLength) {

    this.packRowLength = packRowLength;
  }

  /**
   * Getter for property packSkipRows.
   * @return Value of property packSkipRows.
   */
  public int getPackSkipRows() {

    return this.packSkipRows;
  }

  /**
   * Setter for property packSkipRows.
   * @param packSkipRows New value of property packSkipRows.
   */
  public void setPackSkipRows(int packSkipRows) {

    this.packSkipRows = packSkipRows;
  }

  /**
   * Getter for property packSkipPixels.
   * @return Value of property packSkipPixels.
   */
  public int getPackSkipPixels() {

    return this.packSkipPixels;
  }

  /**
   * Setter for property packSkipPixels.
   * @param packSkipPixels New value of property packSkipPixels.
   */
  public void setPackSkipPixels(int packSkipPixels) {

    this.packSkipPixels = packSkipPixels;
  }

  /**
   * Getter for property packLsbFirst.
   * @return Value of property packLsbFirst.
   */
  public boolean getPackLsbFirst() {

    return this.packLsbFirst;
  }

  /**
   * Setter for property packLsbFirst.
   * @param packLsbFirst New value of property packLsbFirst.
   */
  public void setPackLsbFirst(boolean packLsbFirst) {

    this.packLsbFirst = packLsbFirst;
  }

  /**
   * Getter for property packSwapBytes.
   * @return Value of property packSwapBytes.
   */
  public boolean getPackSwapBytes() {

    return this.packSwapBytes;
  }

  /**
   * Setter for property packSwapBytes.
   * @param packSwapBytes New value of property packSwapBytes.
   */
  public void setPackSwapBytes(boolean packSwapBytes) {

    this.packSwapBytes = packSwapBytes;
  }

  /**
   * Getter for property packSkipImages.
   * @return Value of property packSkipImages.
   */
  public int getPackSkipImages() {

    return this.packSkipImages;
  }

  /**
   * Setter for property packSkipImages.
   * @param packSkipImages New value of property packSkipImages.
   */
  public void setPackSkipImages(int packSkipImages) {

    this.packSkipImages = packSkipImages;
  }

  /**
   * Getter for property packImageHeight.
   * @return Value of property packImageHeight.
   */
  public int getPackImageHeight() {

    return this.packImageHeight;
  }

  /**
   * Setter for property packImageHeight.
   * @param packImageHeight New value of property packImageHeight.
   */
  public void setPackImageHeight(int packImageHeight) {

    this.packImageHeight = packImageHeight;
  }

  /**
   * Getter for property unpackAlignment.
   * @return Value of property unpackAlignment.
   */
  public int getUnpackAlignment() {

    return this.unpackAlignment;
  }

  /**
   * Setter for property unpackAlignment.
   * @param unpackAlignment New value of property unpackAlignment.
   */
  public void setUnpackAlignment(int unpackAlignment) {

    this.unpackAlignment = unpackAlignment;
  }

  /**
   * Getter for property unpackRowLength.
   * @return Value of property unpackRowLength.
   */
  public int getUnpackRowLength() {

    return this.unpackRowLength;
  }

  /**
   * Setter for property unpackRowLength.
   * @param unpackRowLength New value of property unpackRowLength.
   */
  public void setUnpackRowLength(int unpackRowLength) {

    this.unpackRowLength = unpackRowLength;
  }

  /**
   * Getter for property unpackSkipRows.
   * @return Value of property unpackSkipRows.
   */
  public int getUnpackSkipRows() {

    return this.unpackSkipRows;
  }

  /**
   * Setter for property unpackSkipRows.
   * @param unpackSkipRows New value of property unpackSkipRows.
   */
  public void setUnpackSkipRows(int unpackSkipRows) {

    this.unpackSkipRows = unpackSkipRows;
  }

  /**
   * Getter for property unpackSkipPixels.
   * @return Value of property unpackSkipPixels.
   */
  public int getUnpackSkipPixels() {

    return this.unpackSkipPixels;
  }

  /**
   * Setter for property unpackSkipPixels.
   * @param unpackSkipPixels New value of property unpackSkipPixels.
   */
  public void setUnpackSkipPixels(int unpackSkipPixels) {

    this.unpackSkipPixels = unpackSkipPixels;
  }

  /**
   * Getter for property unpackLsbFirst.
   * @return Value of property unpackLsbFirst.
   */
  public boolean getUnpackLsbFirst() {

    return this.unpackLsbFirst;
  }

  /**
   * Setter for property unpackLsbFirst.
   * @param unpackLsbFirst New value of property unpackLsbFirst.
   */
  public void setUnpackLsbFirst(boolean unpackLsbFirst) {

    this.unpackLsbFirst = unpackLsbFirst;
  }

  /**
   * Getter for property unpackSwapBytes.
   * @return Value of property unpackSwapBytes.
   */
  public boolean getUnpackSwapBytes() {

    return this.unpackSwapBytes;
  }

  /**
   * Setter for property unpackSwapBytes.
   * @param unpackSwapBytes New value of property unpackSwapBytes.
   */
  public void setUnpackSwapBytes(boolean unpackSwapBytes) {

    this.unpackSwapBytes = unpackSwapBytes;
  }

  /**
   * Getter for property unpackSkipImages.
   * @return Value of property unpackSkipImages.
   */
  public int getUnpackSkipImages() {

    return this.unpackSkipImages;
  }

  /**
   * Setter for property unpackSkipImages.
   * @param unpackSkipImages New value of property unpackSkipImages.
   */
  public void setUnpackSkipImages(int unpackSkipImages) {

    this.unpackSkipImages = unpackSkipImages;
  }

  /**
   * Getter for property unpackImageHeight.
   * @return Value of property unpackImageHeight.
   */
  public int getUnpackImageHeight() {

    return this.unpackImageHeight;
  }

  /**
   * Setter for property unpackImageHeight.
   * @param unpackImageHeight New value of property unpackImageHeight.
   */
  public void setUnpackImageHeight(int unpackImageHeight) {

    this.unpackImageHeight = unpackImageHeight;
  }
  
  
}