OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:patchSize
(Results
1 - 8
of
8
) sorted by null
/frameworks/base/core/jni/android/graphics/
NinePatchPeeker.cpp
26
size_t
patchSize
= patch->serializedSize();
27
assert(length ==
patchSize
);
29
Res_png_9patch* patchNew = (Res_png_9patch*) malloc(
patchSize
);
30
memcpy(patchNew, patch,
patchSize
);
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
TerrainQuad.java
98
protected int size; // size of this quad, can be between totalSize and
patchSize
100
protected int
patchSize
; // size of the individual patches
143
* @param
patchSize
size of the individual patches
148
public TerrainQuad(String name, int
patchSize
, int totalSize, float[] heightMap) {
149
this(name,
patchSize
, totalSize, Vector3f.UNIT_XYZ, heightMap);
156
* @param
patchSize
size of the individual patches
162
public TerrainQuad(String name, int
patchSize
, int quadSize, int totalSize, float[] heightMap) {
163
this(name,
patchSize
, totalSize, quadSize, Vector3f.UNIT_XYZ, heightMap);
170
* @param
patchSize
size of the individual patches
171
* @param size size of this quad, can be between totalSize and
patchSize
[
all
...]
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/grid/
AssetTileLoader.java
29
private int
patchSize
;
67
public void setPatchSize(int
patchSize
) {
68
this.
patchSize
=
patchSize
;
76
TerrainQuad q = new TerrainQuad("Quad" + location,
patchSize
, quadSize, null);
FractalTileLoader.java
42
private int
patchSize
;
68
TerrainQuad q = new TerrainQuad("Quad" + location,
patchSize
, quadSize, heightMapAt == null ? null : heightMapAt.getHeightMap());
72
public void setPatchSize(int
patchSize
) {
73
this.
patchSize
=
patchSize
;
ImageTileLoader.java
29
private int
patchSize
;
96
im = new BufferedImage(
patchSize
,
patchSize
, imageType);
129
this.
patchSize
= size - 1;
134
TerrainQuad q = new TerrainQuad("Quad" + location,
patchSize
, quadSize, heightMapAt == null ? null : heightMapAt.getHeightMap());
138
public void setPatchSize(int
patchSize
) {
139
this.
patchSize
=
patchSize
;
/external/jmonkeyengine/engine/src/test/jme3test/helloworld/
HelloTerrain.java
103
int
patchSize
= 65;
104
terrain = new TerrainQuad("my terrain",
patchSize
, 513, heightmap.getHeightMap());
114
control.setLodCalculator( new DistanceLodCalculator(
patchSize
, 2.7f) ); // patch size, and a multiplier
/external/opencv/cv/src/
cvlkpyramid.cpp
307
CvSize
patchSize
= cvSize( winSize.width * 2 + 1, winSize.height * 2 + 1 );
308
int patchLen =
patchSize
.width *
patchSize
.height;
309
int srcPatchLen = (
patchSize
.width + 2)*(
patchSize
.height + 2);
488
u.x += (minI.x - (
patchSize
.width - maxI.x + 1))*0.5f;
489
u.y += (minI.y - (
patchSize
.height - maxI.y + 1))*0.5f;
519
_v.x = v.x + (minJ.x - (
patchSize
.width - maxJ.x + 1))*0.5f;
520
_v.y = v.y + (minJ.y - (
patchSize
.height - maxJ.y + 1))*0.5f;
696
CvSize
patchSize
= cvSize( winSize.width * 2 + 1, winSize.height * 2 + 1 )
[
all
...]
/frameworks/base/tools/aapt/
Images.cpp
699
size_t
patchSize
= inPatch->serializedSize();
700
void * newData = malloc(
patchSize
);
701
memcpy(newData, data,
patchSize
);
[
all
...]
Completed in 407 milliseconds