Searched refs:RGBA8 (Results 1 - 25 of 39) sorted by relevance

12

/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/
H A DTextureBlenderFactory.java35 case RGBA8:
H A DTextureBlenderAWT.java18 * <li> RGBA8
67 return new Texture2D(new Image(Format.RGBA8, width, height, newData));
71 return new Texture3D(new Image(Format.RGBA8, width, height, depth, dataArray));
99 case RGBA8:
H A DTextureBlenderLuminance.java58 return new Texture2D(new Image(Format.RGBA8, width, height, newData));
62 return new Texture3D(new Image(Format.RGBA8, width, height, depth, dataArray));
/external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/
H A DBloomFilter.java118 preGlowPass.init(renderManager.getRenderer(), screenWidth, screenHeight, Format.RGBA8, Format.Depth);
142 extractPass.init(renderManager.getRenderer(), screenWidth, screenHeight, Format.RGBA8, Format.Depth, 1, extractMat);
157 horizontalBlur.init(renderManager.getRenderer(), screenWidth, screenHeight, Format.RGBA8, Format.Depth, 1, hBlurMat);
172 verticalalBlur.init(renderManager.getRenderer(), screenWidth, screenHeight, Format.RGBA8, Format.Depth, 1, vBlurMat);
H A DCartoonEdgeFilter.java92 normalPass.init(renderManager.getRenderer(), w, h, Format.RGBA8, Format.Depth);
/external/jmonkeyengine/engine/src/android/com/jme3/asset/
H A DAndroidImageInfo.java75 format = Image.Format.RGBA8;
/external/jmonkeyengine/engine/src/test/jme3test/niftygui/
H A DTestNiftyToMesh.java74 Texture2D tex = new Texture2D(1024, 768, Format.RGBA8);
/external/jmonkeyengine/engine/src/test/jme3test/post/
H A DTestFBOPassthrough.java72 Texture2D fbTex = new Texture2D(w, h, Format.RGBA8);
H A DTestMultiRenderTarget.java124 diffuseData = new Texture2D(w, h, Format.RGBA8);
125 normalData = new Texture2D(w, h, Format.RGBA8);
126 specularData = new Texture2D(w, h, Format.RGBA8);
H A DTestRenderToTexture.java84 Texture2D offTex = new Texture2D(512, 512, Format.RGBA8);
/external/jmonkeyengine/engine/src/core/com/jme3/texture/
H A DImage.java143 RGBA8(32), enum constant in enum:Image.Format
770 capsule.write(format, "format", Format.RGBA8);
781 format = capsule.readEnum("format", Format.class, Format.RGBA8);
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
H A DTextureGeneratorNoise.java67 Format format = colorBand != null ? Format.RGBA8 : Format.Luminance8;
H A DTextureGeneratorClouds.java82 Format format = sType == TEX_COLOR || colorBand != null ? Format.RGBA8 : Format.Luminance8;
H A DTextureGeneratorDistnoise.java73 Format format = colorBand != null ? Format.RGBA8 : Format.Luminance8;
H A DTextureGeneratorMarble.java70 Format format = colorBand != null ? Format.RGBA8 : Format.Luminance8;
H A DTextureGeneratorMusgrave.java69 Format format = colorBand != null ? Format.RGBA8 : Format.Luminance8;
H A DTextureGeneratorStucci.java78 Format format = colorBand != null ? Format.RGBA8 : Format.Luminance8;
H A DTextureGeneratorBlend.java125 Format format = colorBand != null ? Format.RGBA8 : Format.Luminance8;
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
H A DTGALoader.java239 format = dl == 4 ? Format.RGBA8 : Format.RGB8;
275 format = Format.RGBA8;
325 format = Format.RGBA8;
450 format = dl == 4 ? Format.RGBA8 : Format.RGB8;
/external/jmonkeyengine/engine/src/android/com/jme3/renderer/android/
H A DTextureUtil.java34 case RGBA8:
206 case RGBA8:
/external/jmonkeyengine/engine/src/core-effects/com/jme3/post/ssao/
H A DSSAOFilter.java129 normalPass.init(renderManager.getRenderer(), (int) (screenWidth / downSampleFactor), (int) (screenHeight / downSampleFactor), Format.RGBA8, Format.Depth);
159 ssaoPass.init(renderManager.getRenderer(), (int) (screenWidth / downSampleFactor), (int) (screenHeight / downSampleFactor), Format.RGBA8, Format.Depth, 1, ssaoMat);
/external/jmonkeyengine/engine/src/core/com/jme3/post/
H A DFilterPostProcessor.java403 Texture2D msColor = new Texture2D(width, height, numSamples, Format.RGBA8);
411 renderFrameBufferMS.setColorBuffer(Format.RGBA8);
418 filterTexture = new Texture2D(width, height, Format.RGBA8);
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
H A DImageBasedHeightMap.java146 case RGBA8:
/external/jmonkeyengine/engine/src/core-effects/com/jme3/water/
H A DSimpleWaterProcessor.java271 reflectionTexture = new Texture2D(renderWidth, renderHeight, Format.RGBA8);
272 refractionTexture = new Texture2D(renderWidth, renderHeight, Format.RGBA8);
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/renderer/lwjgl/
H A DTextureUtil.java161 case RGBA8:
384 case RGBA8:

Completed in 672 milliseconds

12