HomeSort by relevance Sort by last modified time
    Searched refs:reshape (Results 1 - 25 of 44) sorted by null

1 2

  /external/jmonkeyengine/engine/src/core/com/jme3/system/
SystemListener.java 53 public void reshape(int width, int height); method in interface:SystemListener
  /pdk/apps/CameraITS/pymodules/its/
image.py 64 u = u.reshape(h/2, w/2).repeat(2, axis=1).repeat(2, axis=0)
65 v = v.reshape(h/2, w/2).repeat(2, axis=1).repeat(2, axis=0)
66 yuv = numpy.dstack([y, u.reshape(w*h), v.reshape(w*h)])
68 flt.reshape(w*h*3)[:] = yuv.reshape(h*w*3)[:]
69 flt = numpy.dot(flt.reshape(w*h,3), ccm_yuv_to_rgb.T).clip(0, 255)
71 rgb.reshape(w*h*3)[:] = flt.reshape(w*h*3)[:]
92 return ((y.astype(numpy.float32) / 255.0).reshape(h, w, 1)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/post/
SceneProcessor.java 60 public void reshape(ViewPort vp, int w, int h); method in interface:SceneProcessor
PreDepthProcessor.java 72 public void reshape(ViewPort vp, int w, int h) { method in class:PreDepthProcessor
FilterPostProcessor.java 140 //first call to reshape
141 reshape(vp, cam.getWidth(), cam.getHeight()); method
370 public void reshape(ViewPort vp, int w, int h) { method in class:FilterPostProcessor
HDRRenderer.java 255 public void reshape(ViewPort vp, int w, int h){ method in class:HDRRenderer
329 reshape(vp, w, h); method
  /external/clang/test/Analysis/
malloc-interprocedural.c 77 static char *reshape(char *in) { function
83 v = reshape(v);
84 v = reshape(v);// expected-warning {{Potential leak of memory pointed to by 'v'}}
  /external/jmonkeyengine/engine/src/desktop/com/jme3/app/state/
ScreenshotAppState.java 60 reshape(vp, vp.getCamera().getWidth(), vp.getCamera().getHeight()); method
68 public void reshape(ViewPort vp, int w, int h) { method in class:ScreenshotAppState
VideoRecorderAppState.java 160 public void reshape(ViewPort vp, int w, int h) { method in class:VideoRecorderAppState.VideoProcessor
  /external/jmonkeyengine/engine/src/core/com/jme3/shadow/
BasicShadowRenderer.java 96 reshape(vp, vp.getCamera().getWidth(), vp.getCamera().getHeight()); method
211 public void reshape(ViewPort vp, int w, int h) { method in class:BasicShadowRenderer
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/water/
ReflectionProcessor.java 44 public void reshape(ViewPort vp, int w, int h) { method in class:ReflectionProcessor
SimpleWaterProcessor.java 168 public void reshape(ViewPort vp, int w, int h) { method in class:SimpleWaterProcessor
568 public void reshape(ViewPort vp, int w, int h) { method in class:SimpleWaterProcessor.RefractionProcessor
  /pdk/apps/CameraITS/tests/
test_jpeg.py 52 img = numpy.array(Image.open(fname)).reshape(w,h,3) / 255.0
test_capture_result.py 77 xs = numpy.array([range(h_map)] * w_map).reshape(w_map, h_map)
78 ys = numpy.array([[i]*h_map for i in range(w_map)]).reshape(w_map, h_map)
82 zs = numpy.array(lsc_map[start:start+size]).reshape(w_map, h_map)
  /external/jmonkeyengine/engine/src/desktop/com/jme3/system/awt/
AwtPanel.java 43 // Reshape vars
239 sp.reshape(vp, width, height);
288 public void reshape(ViewPort vp, int w, int h) { method in class:AwtPanel
AwtPanelsContext.java 32 public void reshape(int width, int height) { method in class:AwtPanelsContext.AwtPanelsListener
  /external/jmonkeyengine/engine/src/test/jme3test/post/
TestMultiRenderTarget.java 112 reshape(vp, vp.getCamera().getWidth(), vp.getCamera().getHeight()); method
123 public void reshape(ViewPort vp, int w, int h) { method in class:TestMultiRenderTarget
TestRenderToMemory.java 234 public void reshape(ViewPort vp, int w, int h) { method in class:TestRenderToMemory
  /external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
NiftyJmeDisplay.java 151 public void reshape(ViewPort vp, int w, int h) { method in class:NiftyJmeDisplay
  /external/jmonkeyengine/engine/src/test/jme3test/tools/
TestOctree.java 128 public void reshape(ViewPort vp, int w, int h) { method in class:TestOctree
  /external/chromium_org/cc/debug/
fake_web_graphics_context_3d.cc 36 void FakeWebGraphicsContext3D::reshape(int width, int height) { function in class:cc::FakeWebGraphicsContext3D
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/
LwjglCanvas.java 216 listener.reshape(width, height);
LwjglDisplay.java 178 listener.reshape(settings.getWidth(), settings.getHeight());
  /external/jmonkeyengine/engine/src/core/com/jme3/app/
Application.java 449 public void reshape(int w, int h){ method in class:Application
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLCanvasElement.cpp 278 static_cast<WebGLRenderingContext*>(m_context.get())->reshape(width(), height());

Completed in 323 milliseconds

1 2