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

1 2

  /frameworks/base/graphics/java/android/graphics/
SurfaceTexture.java 101 * @param texName the OpenGL texture object name (e.g. generated via glGenTextures)
105 public SurfaceTexture(int texName) {
106 init(texName, false);
121 * @param texName the OpenGL texture object name (e.g. generated via glGenTextures)
126 public SurfaceTexture(int texName, boolean singleBufferMode) {
127 init(texName, singleBufferMode);
209 * @param texName The name of the OpenGL ES texture that will be created. This texture name
212 public void attachToGLContext(int texName) {
213 int err = nativeAttachToGLContext(texName);
318 private void init(int texName, boolean singleBufferMode) throws Surface.OutOfResourcesException
    [all...]
  /frameworks/native/cmds/flatland/
Composers.cpp 46 bool blit(GLuint texName, const float* texMatrix,
49 return modBlit(texName, texMatrix, modColor, x, y, w, h);
52 bool modBlit(GLuint texName, const float* texMatrix, float* modColor,
87 glBindTexture(GL_TEXTURE_EXTERNAL_OES, texName);
125 virtual bool compose(GLuint texName, const sp<GLConsumer>& glc) {
149 virtual bool compose(GLuint texName, const sp<GLConsumer>& glc) {
158 return mBlitter.blit(texName, texMatrix, x, y, w, h);
173 virtual bool compose(GLuint texName, const sp<GLConsumer>& glc) {
190 return mBlitter.blit(texName, texMatrix, x, y, w, h);
205 virtual bool compose(GLuint texName, const sp<GLConsumer>& glc)
    [all...]
Flatland.h 52 virtual bool compose(GLuint texName, const sp<GLConsumer>& glc) = 0;
Main.cpp 406 GLuint texName;
408 &texName);
  /frameworks/native/services/surfaceflinger/RenderEngine/
GLES11RenderEngine.h 42 uint32_t* texName, uint32_t* fbName, uint32_t* status);
43 virtual void unbindFramebuffer(uint32_t texName, uint32_t fbName);
GLES20RenderEngine.h 57 uint32_t* texName, uint32_t* fbName, uint32_t* status);
58 virtual void unbindFramebuffer(uint32_t texName, uint32_t fbName);
RenderEngine.h 50 virtual void bindImageAsFramebuffer(EGLImageKHR image, uint32_t* texName, uint32_t* fbName, uint32_t* status) = 0;
51 virtual void unbindFramebuffer(uint32_t texName, uint32_t fbName) = 0;
GLES11RenderEngine.cpp 188 uint32_t* texName, uint32_t* fbName, uint32_t* status) {
202 *texName = tname;
206 void GLES11RenderEngine::unbindFramebuffer(uint32_t texName, uint32_t fbName) {
209 glDeleteTextures(1, &texName);
GLES20RenderEngine.cpp 154 uint32_t* texName, uint32_t* fbName, uint32_t* status) {
167 *texName = tname;
171 void GLES20RenderEngine::unbindFramebuffer(uint32_t texName, uint32_t fbName) {
174 glDeleteTextures(1, &texName);
  /external/chromium_org/ui/android/java/src/org/chromium/ui/gfx/
SurfaceTextureBridge.java 54 private static void attachToGLContext(SurfaceTexture surfaceTexture, int texName) {
56 surfaceTexture.attachToGLContext(texName);
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
MaterialLoader.java 65 private String texName;
145 if (texName != null){
146 textures[texUnit].setName(texName);
147 texName = null;
192 texName = split[1];
194 texName = null;
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texobj.c     [all...]
dlist.c     [all...]
  /external/mesa3d/src/mesa/main/
texobj.c     [all...]
dlist.c     [all...]
  /frameworks/base/graphics/java/android/renderscript/
Program.java 338 * @param texName what the texture should be called in the
342 public BaseProgramBuilder addTexture(TextureType texType, String texName)
348 mTextureNames[mTextureCount] = texName;
  /frameworks/base/core/jni/android/graphics/
SurfaceTexture.cpp 230 jint texName, jboolean singleBufferMode, jobject weakThiz)
239 sp<GLConsumer> surfaceTexture(new GLConsumer(bq, texName, GL_TEXTURE_EXTERNAL_OES, true, true));
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
ColladaParser.java 279 String texName = samplerName;
299 texName = getString(ref);
304 //Log.v(TAG, "Extracted texture name " + texName);
305 return mImages.get(texName);
  /frameworks/native/libs/gui/tests/
SurfaceTexture_test.cpp 507 TextureRenderer(GLuint texName, const sp<GLConsumer>& st):
508 mTexName(texName),
    [all...]
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 

Completed in 953 milliseconds

1 2