Home
last modified time | relevance | path

Searched refs:cap (Results 1 – 25 of 128) sorted by relevance

123456

/device/generic/vulkan-cereal/stream-servers/gl/OpenGLESDispatch/
Dgles3_extensions_dispatch_logging_wrappers.impl34 void glEnableiEXT_dispatchLoggingWrapper(GLenum cap, GLuint index) {
35 DISPATCH_DEBUG_LOG("glEnableiEXT(cap:0x%X, index:%d)", cap, index);
36 GLDispatch::glEnableiEXT_underlying(cap, index);
39 void glDisableiEXT_dispatchLoggingWrapper(GLenum cap, GLuint index) {
40 DISPATCH_DEBUG_LOG("glDisableiEXT(cap:0x%X, index:%d)", cap, index);
41 GLDispatch::glDisableiEXT_underlying(cap, index);
69 GLboolean glIsEnablediEXT_dispatchLoggingWrapper(GLenum cap, GLuint index) {
70 DISPATCH_DEBUG_LOG("glIsEnablediEXT(cap:0x%X, index:%d)", cap, index);
71 return GLDispatch::glIsEnablediEXT_underlying(cap, index);
Dgles_common_dispatch_logging_wrappers.impl134 void glDisable_dispatchLoggingWrapper(GLenum cap) {
135 DISPATCH_DEBUG_LOG("glDisable(cap:0x%X)", cap);
136 GLDispatch::glDisable_underlying(cap);
149 void glEnable_dispatchLoggingWrapper(GLenum cap) {
150 DISPATCH_DEBUG_LOG("glEnable(cap:0x%X)", cap);
151 GLDispatch::glEnable_underlying(cap);
254 GLboolean glIsEnabled_dispatchLoggingWrapper(GLenum cap) {
255 DISPATCH_DEBUG_LOG("glIsEnabled(cap:0x%X)", cap);
256 return GLDispatch::glIsEnabled_underlying(cap);
Dgles3_extensions.entries11 void glEnableiEXT(GLenum cap, GLuint index);
12 void glDisableiEXT(GLenum cap, GLuint index);
18 GLboolean glIsEnablediEXT(GLenum cap, GLuint index);
Dgles_common_for_gles2.entries36 void glDisable(GLenum cap);
39 void glEnable(GLenum cap);
60 GLboolean glIsEnabled(GLenum cap);
Dgles_common.entries35 void glDisable(GLenum cap);
38 void glEnable(GLenum cap);
59 GLboolean glIsEnabled(GLenum cap);
Dgles_common_for_gles1.entries36 void glDisable(GLenum cap);
39 void glEnable(GLenum cap);
60 GLboolean glIsEnabled(GLenum cap);
/device/generic/vulkan-cereal/include/OpenGLESDispatch/
Dgles3_extensions_functions.h14 X(void, glEnableiEXT, (GLenum cap, GLuint index), (cap, index)) \
15 X(void, glDisableiEXT, (GLenum cap, GLuint index), (cap, index)) \
21 X(GLboolean, glIsEnablediEXT, (GLenum cap, GLuint index), (cap, index)) \
Dgles_common_functions.h37 X(void, glDisable, (GLenum cap), (cap)) \
40 X(void, glEnable, (GLenum cap), (cap)) \
61 X(GLboolean, glIsEnabled, (GLenum cap), (cap)) \
Dgles3_extensions_static_translator_namespaced_header.h14 GL_APICALL void GL_APIENTRY glEnableiEXT(GLenum cap, GLuint index);
15 GL_APICALL void GL_APIENTRY glDisableiEXT(GLenum cap, GLuint index);
21 GL_APICALL GLboolean GL_APIENTRY glIsEnablediEXT(GLenum cap, GLuint index);
Dgles12tr_internal.h81 X(void, glDisable, (GLenum cap), (cap)) \
82 X(void, glDisableClientState, (GLenum cap), (cap)) \
96 X(void, glEnable, (GLenum cap), (cap)) \
97 X(void, glEnableClientState, (GLenum cap), (cap)) \
173 X(GLboolean, glIsEnabled, (GLenum cap), (cap)) \
Dgles_common_for_gles1_static_translator_namespaced_header.h37 GL_APICALL void GL_APIENTRY glDisable(GLenum cap);
40 GL_APICALL void GL_APIENTRY glEnable(GLenum cap);
61 GL_APICALL GLboolean GL_APIENTRY glIsEnabled(GLenum cap);
Dgles_common_for_gles2_static_translator_namespaced_header.h37 GL_APICALL void GL_APIENTRY glDisable(GLenum cap);
40 GL_APICALL void GL_APIENTRY glEnable(GLenum cap);
61 GL_APICALL GLboolean GL_APIENTRY glIsEnabled(GLenum cap);
/device/generic/goldfish-opengl/system/vulkan_enc/
Dvk_util.h89 uint32_t cap; member
110 a->cap = *len; in __vk_outarray_init()
116 a->cap = UINT32_MAX; in __vk_outarray_init()
135 if (*a->filled_len >= a->cap) in __vk_outarray_next()
/device/generic/vulkan-cereal/stream-servers/gl/glestranslator/GLES_CM/
DGLEScmValidate.cpp151 bool GLEScmValidate::capability(GLenum cap,int maxLights,int maxClipPlanes) { in capability() argument
152 switch(cap) { in capability()
182 …return GLEScmValidate::lightEnum(cap,maxLights) || GLEScmValidate::clipPlaneEnum(cap,maxClipPlanes… in capability()
DCoreProfileEngine.cpp530 void CoreProfileEngine::enable(GLenum cap) { in enable() argument
531 switch (cap) { in enable()
556 gl.glEnable(cap); in enable()
559 void CoreProfileEngine::disable(GLenum cap) { in disable() argument
560 switch (cap) { in disable()
585 gl.glDisable(cap); in disable()
DGLEScmContext.cpp879 void GLEScmContext::enable(GLenum cap) { in enable() argument
880 setEnable(cap, true); in enable()
883 core().enable(cap); in enable()
885 if (cap==GL_TEXTURE_GEN_STR_OES) { in enable()
890 dispatcher().glEnable(cap); in enable()
895 void GLEScmContext::disable(GLenum cap) { in disable() argument
896 setEnable(cap, false); in disable()
899 core().disable(cap); in disable()
901 if (cap==GL_TEXTURE_GEN_STR_OES) { in disable()
906 dispatcher().glDisable(cap); in disable()
DCoreProfileEngine.h133 void enable(GLenum cap);
134 void disable(GLenum cap);
/device/generic/goldfish-opengl/system/GLESv1_enc/
DGLEncoder.cpp346 GLboolean GLEncoder::s_glIsEnabled(void *self, GLenum cap) in s_glIsEnabled() argument
350 int loc = ctx->m_state->getLocation(cap); in s_glIsEnabled()
707 void GLEncoder::s_glDisable(void* self, GLenum cap) in s_glDisable() argument
712 if (cap == GL_TEXTURE_2D || cap == GL_TEXTURE_EXTERNAL_OES) { in s_glDisable()
714 state->disableTextureTarget(cap); in s_glDisable()
730 ctx->m_glDisable_enc(ctx, cap); in s_glDisable()
734 void GLEncoder::s_glEnable(void* self, GLenum cap) in s_glEnable() argument
739 if (cap == GL_TEXTURE_2D || cap == GL_TEXTURE_EXTERNAL_OES) { in s_glEnable()
741 state->enableTextureTarget(cap); in s_glEnable()
755 ctx->m_glEnable_enc(ctx, cap); in s_glEnable()
DGLEncoder.h134 static GLboolean s_glIsEnabled(void *self, GLenum cap);
150 static void s_glDisable(void* self, GLenum cap);
151 static void s_glEnable(void* self, GLenum cap);
/device/google/gs101/dumpstate/
Ddump_gs101.sh272 cap=`cat ${b/count/cap}`
275 echo "${a/_count/} \t$cnt\t$cap\t$ti\t$volt"
/device/google/gs201/dumpstate/
Ddump_power_gs201.sh300 cap=`cat ${b/count/cap}`
303 echo "${a/_count/} \t$cnt\t$cap\t$ti\t$volt"
/device/google/cuttlefish/tests/ril/src/com/android/cuttlefish/ril/tests/
DRilE2eTests.java111 NetworkCapabilities cap = mConnManager.getNetworkCapabilities(nw); in testRilConnects() local
112 if (cap != null && cap.hasTransport(NetworkCapabilities.TRANSPORT_CELLULAR)) { in testRilConnects()
/device/google/cuttlefish/common/libs/concurrency/
Dsemaphore.h27 Semaphore(const unsigned int init_val = 0, const unsigned int cap = 30000)
28 : count_{init_val}, capacity_{cap} {}
/device/google/zuma/dumpstate/
Ddump_power.sh298 cap=`cat ${b/count/cap}`
301 echo "${a/_count/} \t$cnt\t$cap\t$ti\t$volt"
/device/generic/vulkan-cereal/stream-servers/vulkan/
Dvk_util.h108 uint32_t cap; member
126 a->cap = *len; in __vk_outarray_init()
131 if (a->data == NULL) a->cap = UINT32_MAX; in __vk_outarray_init()
146 if (*a->filled_len >= a->cap) return NULL; in __vk_outarray_next()

123456