Searched defs:getWidth (Results 1 - 25 of 59) sorted by relevance

123

/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
H A DQuad.java85 public float getWidth() { method in class:Quad
H A DPQTorus.java104 public float getWidth() { method in class:PQTorus
/external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
H A DRenderImageJme.java61 width = image.getWidth();
71 width = image.getWidth();
79 public int getWidth() { method in class:RenderImageJme
H A DRenderFontJme.java82 public int getWidth(final String str) { method in class:RenderFontJme
100 public int getWidth(final String str, final float size) { method in class:RenderFontJme
105 return getWidth(str);
H A DNiftyJmeDisplay.java96 w = vp.getCamera().getWidth();
143 int getWidth() { method in class:NiftyJmeDisplay
/external/skia/include/images/
H A DSkBitmapRegionDecoder.h34 virtual int getWidth() { return fWidth; } function in class:SkBitmapRegionDecoder
/external/skia/legacy/include/images/
H A DSkBitmapRegionDecoder.h34 virtual int getWidth() { return fWidth; } function in class:SkBitmapRegionDecoder
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/
H A DMemoryFlyoutPreferences.java48 public int getWidth() { method in class:MemoryFlyoutPreferences
H A DIFlyoutPreferences.java57 int getWidth(); method in interface:IFlyoutPreferences
H A DPluginFlyoutPreferences.java66 public int getWidth() { method in class:PluginFlyoutPreferences
/external/replicaisland/src/com/replica/replicaisland/
H A DTiledWorld.java122 public final int getWidth() { method in class:TiledWorld
/external/skia/include/core/
H A DSkStrokeRec.h34 SkScalar getWidth() const { return fWidth; } function in class:SkStrokeRec
/external/webkit/Source/WebCore/html/canvas/
H A DWebGLRenderbuffer.h54 GC3Dsizei getWidth() const { return m_width; } function in class:WebCore::WebGLRenderbuffer
H A DWebGLFramebuffer.cpp171 GC3Dsizei WebGLFramebuffer::getWidth() const function in class:WebCore::WebGLFramebuffer
176 return (reinterpret_cast<WebGLRenderbuffer*>(m_colorAttachment.get()))->getWidth();
178 return (reinterpret_cast<WebGLTexture*>(m_colorAttachment.get()))->getWidth(m_texTarget, m_texLevel);
/external/chromium/chrome/browser/resources/net_internals/
H A Dview.js54 View.prototype.getWidth = function() {
63 return this.getLeft() + this.getWidth();
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DBitmapCharacterSet.java164 public int getWidth() { method in class:BitmapCharacterSet
H A DBitmapCharacter.java88 public int getWidth() { method in class:BitmapCharacter
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/
H A DGeoMap.java95 * MUST return the same value as getHeight(y*getWidth()+x)
111 * getWidth()*getHeight() index is lower right
128 public int getWidth() { method in class:GeoMap
155 * @param store A preallocated FloatBuffer where to store the data (optional), size must be >= getWidth()*getHeight()*3
163 if (store.remaining() < getWidth()*getHeight()*3)
166 store = BufferUtils.createFloatBuffer(getWidth()*getHeight()*3);
177 for (int x = 0; x < getWidth(); x++) {
180 if (x == getWidth() - 1) { // case #4 : last row, last col
182 // adj = normalIndex - getWidth();
189 // opp = normalIndex - getWidth();
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
H A DVisualSampleEntry.java78 public int getWidth() { method in class:VisualSampleEntry
190 IsoTypeWriter.writeUInt16(byteBuffer, getWidth());
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/
H A DTrackMetaData.java75 public double getWidth() { method in class:TrackMetaData
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowDisplay.java45 public int getWidth() { method in class:ShadowDisplay
/external/skia/include/utils/
H A DSkLayer.h40 SkScalar getWidth() const { return m_size.width(); } function in class:SkLayer
/external/skia/legacy/include/utils/
H A DSkLayer.h38 SkScalar getWidth() const { return m_size.width(); } function in class:SkLayer
/external/jmonkeyengine/engine/src/core/com/jme3/texture/
H A DFrameBuffer.java246 if (width != img.getWidth() || height != img.getHeight())
411 public int getWidth() { method in class:FrameBuffer
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
H A DTextureAtlas.java261 } else if (location.width != image.getWidth() || location.height != image.getHeight()) {
283 int width = source.getWidth();
354 Image newImage = new Image(format, source.getWidth(), source.getHeight(), BufferUtils.createByteBuffer(source.getWidth() * source.getHeight() * 4));
591 if (image.getWidth() > location.getWidth() || image.getHeight() > location.getHeight()) {
595 if (image.getWidth() == location.getWidth() && image.getHeight() == location.getHeight()) {
600 int dw = location.getWidth() - image.getWidth();
678 public int getWidth() { method in class:TextureAtlas.TextureAtlasTile
[all...]

Completed in 486 milliseconds

123