/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 | 87 return ((y.astype(numpy.float32) / 255.0).reshape(h, w, 1), 88 (u.astype(numpy.float32) / 255.0).reshape(h/2, w/2, 1), 89 (v.astype(numpy.float32) / 255.0).reshape(h/2, w/2, 1)) 114 u = u.reshape(h/2, w/2).repeat(2, axis=1).repeat(2, axis=0) 115 v = v.reshape(h/2, w/2).repeat(2, axis=1).repeat(2, axis=0) 116 yuv = numpy.dstack([y, u.reshape(w*h), v.reshape(w*h)]) 118 flt.reshape(w*h*3)[:] = yuv.reshape(h*w*3)[:] 119 flt = numpy.dot(flt.reshape(w*h,3), ccm_yuv_to_rgb.T).clip(0, 255 [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
|
PssmShadowRenderer.java | 456 public void reshape(ViewPort vp, int w, int h) { method in class:PssmShadowRenderer
|
/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_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/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 | 269 toWebGLRenderingContext(m_context.get())->reshape(width(), height());
|
/external/jmonkeyengine/engine/src/android/com/jme3/system/android/ |
OGLESContext.java | 368 // SystemListener:reshape 373 listener.reshape(width, height);
|