OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:textureId
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/third_party/angle/tests/angle_tests/
MaxTextureSizeTest.cpp
217
GLuint
textureId
= 0;
219
glGenTextures(1, &
textureId
);
220
glBindTexture(GL_TEXTURE_2D,
textureId
);
236
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D,
textureId
, 0);
277
glDeleteTextures(1, &
textureId
);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
Canvas2DLayerBridgeTest.cpp
129
unsigned
textureId
= bridge->getBackingTexture();
130
EXPECT_EQ(
textureId
, 0u);
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
VideoRenderer.java
49
public int
textureId
;
75
int width, int height, Object textureObject, int
textureId
) {
81
this.
textureId
=
textureId
;
103
textureId
= source.
textureId
;
/cts/suite/cts/deviceTests/opengl/jni/graphics/
GLUtils.cpp
61
GLuint
textureId
= 0;
74
textureId
= sEnv->CallStaticIntMethod(activityClass, loadTexture, sAssetManager, pathStr);
76
return
textureId
;
211
GLuint
textureId
= 0;
227
glGenTextures(1, &
textureId
);
228
glBindTexture(GL_TEXTURE_2D,
textureId
);
236
return
textureId
;
/external/deqp/modules/gles2/functional/
es2fTextureStateQueryTests.cpp
212
GLuint
textureId
= 0;
213
glGenTextures(1, &
textureId
);
214
glBindTexture(m_textureTarget,
textureId
);
219
glDeleteTextures(1, &
textureId
);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
DrawingBuffer.h
73
Platform3DObject
textureId
;
77
:
textureId
(0)
DrawingBuffer.cpp
247
newTexture.
textureId
= createColorTexture();
250
if (!newTexture.
textureId
)
264
m_context->framebufferTexture2DMultisampleEXT(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, m_colorBuffer.
textureId
, 0, m_sampleCount);
266
m_context->framebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, m_colorBuffer.
textureId
, 0);
268
m_context->copyTextureCHROMIUM(GL_TEXTURE_2D, m_colorBuffer.
textureId
, frontColorBufferMailbox->textureInfo.
textureId
, 0, GL_RGBA, GL_UNSIGNED_BYTE);
278
m_context->produceTextureDirectCHROMIUM(frontColorBufferMailbox->textureInfo.
textureId
, GL_TEXTURE_2D, frontColorBufferMailbox->mailbox.name);
348
m_context->bindTexture(GL_TEXTURE_2D, mailboxInfo->textureInfo.
textureId
);
375
m_context->deleteTexture(m_textureMailboxes[i]->textureInfo.
textureId
);
415
m_colorBuffer.
textureId
= createColorTexture()
[
all
...]
/external/deqp/modules/gles3/functional/
es3fTextureStateQueryTests.cpp
210
GLuint
textureId
= 0;
211
glGenTextures(1, &
textureId
);
212
glBindTexture(m_textureTarget,
textureId
);
215
checkBooleans(glIsTexture(
textureId
), GL_TRUE);
217
glDeleteTextures(1, &
textureId
);
220
checkBooleans(glIsTexture(
textureId
), GL_FALSE);
241
GLuint
textureId
= 0;
242
glGenTextures(1, &
textureId
);
243
glBindTexture(m_textureTarget,
textureId
);
248
glDeleteTextures(1, &
textureId
);
[
all
...]
/cts/tests/tests/openglperf/src/android/openglperf/cts/
PlanetsRenderer.java
348
int[]
textureId
= new int[1];
356
GLES20.glGenTextures(1,
textureId
, 0);
359
GLES20.glBindTexture(GLES20.GL_TEXTURE_2D,
textureId
[0]);
379
return
textureId
[0];
/external/chromium_org/content/renderer/media/android/
webmediaplayer_android.cc
606
unsigned
textureId
= static_cast<unsigned>(
608
if (!copyVideoTextureToPlatformTexture(context3D,
textureId
, 0,
[
all
...]
Completed in 1433 milliseconds