OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TextureSource
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
TextureSource.java
25
public class
TextureSource
{
32
public static
TextureSource
fromTexture(int texId, int target) {
33
return new
TextureSource
(texId, target, false);
36
public static
TextureSource
fromTexture(int texId) {
37
return new
TextureSource
(texId, GLES20.GL_TEXTURE_2D, false);
40
public static
TextureSource
newTexture() {
41
return new
TextureSource
(GLToolbox.generateTexture(), GLES20.GL_TEXTURE_2D, true);
44
public static
TextureSource
newExternalTexture() {
45
return new
TextureSource
(GLToolbox.generateTexture(),
64
//Log.i("
TextureSource
", "Allocating empty texture " + mTexId + ": " + width + "x" + height + ".")
[
all
...]
/external/drm_hwcomposer/
glworker.cpp
296
struct
TextureSource
{
306
TextureSource
textures[MAX_OVERLAPPING_LAYERS];
331
RenderingCommand::
TextureSource
&src = cmd.textures[cmd.texture_count];
650
const RenderingCommand::
TextureSource
&src = cmd.textures[src_index];
Completed in 387 milliseconds