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

12

/external/chromium_org/third_party/WebKit/Source/platform/graphics/cpu/arm/
H A DGraphicsContext3DNEON.h66 uint8x8x4_t RGBA8 = {{componentR, componentG, componentB, componentA}}; local
67 vst4_u8(destination, RGBA8);
87 uint8x8x4_t RGBA8 = {{componentR, componentG, componentB, componentA}}; local
88 vst4_u8(destination + i, RGBA8);
108 uint8x8x4_t RGBA8 = {{componentR, componentG, componentB, componentA}}; local
109 vst4_u8(destination + i, RGBA8);
154 uint8x8x4_t RGBA8 = vld4_u8(source + i); local
156 uint8x8_t componentR = vand_u8(RGBA8.val[0], immediate0xf0);
157 uint8x8_t componentG = vshr_n_u8(vand_u8(RGBA8.val[1], immediate0xf0), 4);
158 uint8x8_t componentB = vand_u8(RGBA8
216 uint8x8x4_t RGBA8 = vld4_u8(source + i); local
279 uint8x8x4_t RGBA8 = vld4_u8(source + i); local
[all...]
/external/chromium_org/cc/resources/
H A Dui_resource_bitmap.cc38 UIResourceBitmap::RGBA8,
H A Dui_resource_bitmap.h29 RGBA8, enumerator in enum:cc::UIResourceBitmap::UIResourceFormat
/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;
/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:

Completed in 418 milliseconds

12