OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mipSizes
(Results
1 - 7
of
7
) sorted by null
/external/jmonkeyengine/engine/src/android/com/jme3/renderer/android/
TextureUtil.java
238
int[]
mipSizes
= img.getMipMapSizes();
240
if (
mipSizes
== null){
242
mipSizes
= new int[]{ data.capacity() };
244
mipSizes
= new int[]{ width * height * fmt.getBitsPerPixel() / 8 };
252
1 -
mipSizes
.length,
262
for (int i = 0; i <
mipSizes
.length; i++){
269
data.limit(pos +
mipSizes
[i]);
293
pos +=
mipSizes
[i];
/external/jmonkeyengine/engine/src/desktop/jme3tools/converters/
MipMapGenerator.java
112
int[]
mipSizes
= new int[output.size()];
117
mipSizes
[i] = data.capacity();
123
image.setMipMapSizes(
mipSizes
);
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/renderer/lwjgl/
TextureUtil.java
401
int[]
mipSizes
= img.getMipMapSizes();
404
if (
mipSizes
== null){
406
mipSizes
= new int[]{ data.capacity() };
408
mipSizes
= new int[]{ width * height * fmt.getBitsPerPixel() / 8 };
414
for (int i = 0; i <
mipSizes
.length; i++){
421
data.limit(pos +
mipSizes
[i]);
518
pos +=
mipSizes
[i];
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_cmd.c
217
*
mipsizes
arrays.
220
* The faces and
mipSizes
arrays are initialized to zero.
258
* and '
mipSizes
'.
272
SVGA3dSize **
mipSizes
, // OUT
279
sizeof **
mipSizes
* numMipSizes, 1);
288
*
mipSizes
= (SVGA3dSize*) &cmd[1];
291
memset(*
mipSizes
, 0, sizeof **
mipSizes
* numMipSizes);
321
SVGA3dSize *
mipSizes
;
326
sid, 0, format, &faces, &
mipSizes
, 1)
[
all
...]
svga_cmd.h
83
SVGA3dSize **
mipSizes
,
/external/mesa3d/src/gallium/drivers/svga/
svga_cmd.c
217
*
mipsizes
arrays.
220
* The faces and
mipSizes
arrays are initialized to zero.
258
* and '
mipSizes
'.
272
SVGA3dSize **
mipSizes
, // OUT
279
sizeof **
mipSizes
* numMipSizes, 1);
288
*
mipSizes
= (SVGA3dSize*) &cmd[1];
291
memset(*
mipSizes
, 0, sizeof **
mipSizes
* numMipSizes);
321
SVGA3dSize *
mipSizes
;
326
sid, 0, format, &faces, &
mipSizes
, 1)
[
all
...]
svga_cmd.h
83
SVGA3dSize **
mipSizes
,
Completed in 767 milliseconds