Searched refs:texType (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DFragmentShader.java66 public Builder addShaderTexture(Program.TextureType texType, String name) { argument
68 mShader.mShaderTextureTypes.add(texType);
72 public Builder addTexture(Program.TextureType texType, String name) { argument
74 mShader.mTextureTypes.add(texType);
/frameworks/base/graphics/java/android/renderscript/
H A DProgram.java323 * @param texType describes that the texture to append it (2D,
327 public BaseProgramBuilder addTexture(TextureType texType) throws IllegalArgumentException { argument
328 addTexture(texType, "Tex" + mTextureCount);
335 * @param texType describes that the texture to append it (2D,
341 public BaseProgramBuilder addTexture(TextureType texType, String texName) argument
346 mTextureTypes[mTextureCount] = texType;
/frameworks/rs/
H A DrsFont.cpp547 ObjectBaseRef<Type> texType = Type::getTypeRef(mRSC, alphaElem.get(), local
552 Allocation *cacheAlloc = Allocation::createAllocation(mRSC, texType.get(),
558 mCacheLines.push(new CacheTextureLine(16, texType->getDimX(), nextLine, 0));
560 mCacheLines.push(new CacheTextureLine(24, texType->getDimX(), nextLine, 0));
562 mCacheLines.push(new CacheTextureLine(24, texType->getDimX(), nextLine, 0));
564 mCacheLines.push(new CacheTextureLine(32, texType->getDimX(), nextLine, 0));
566 mCacheLines.push(new CacheTextureLine(32, texType->getDimX(), nextLine, 0));
568 mCacheLines.push(new CacheTextureLine(40, texType->getDimX(), nextLine, 0));
570 mCacheLines.push(new CacheTextureLine(texType->getDimY() - nextLine, texType
[all...]
/frameworks/rs/driver/
H A DrsdShader.cpp82 uint32_t texType = 0; local
86 texType = GL_TEXTURE_EXTERNAL_OES;
88 texType = GL_TEXTURE_2D;
91 texType = GL_TEXTURE_CUBE_MAP;
93 if (texType != returnKey->mTextureTargets[ct]) {

Completed in 1141 milliseconds