Searched refs:m_hostDriverCaps (Results 1 – 4 of 4) sorted by relevance
/hardware/google/gfxstream/guest/egl/ |
D | eglDisplay.cpp | 662 return m_hostDriverCaps; in getHostDriverCaps() 665 memset(&m_hostDriverCaps, 0x0, sizeof(m_hostDriverCaps)); in getHostDriverCaps() 667 m_hostDriverCaps.max_color_attachments = 8; in getHostDriverCaps() 671 m_gles2_iface->getIntegerv(GL_MAX_VERTEX_ATTRIBS, &m_hostDriverCaps.max_vertex_attribs); in getHostDriverCaps() 672 …m_gles2_iface->getIntegerv(GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS, &m_hostDriverCaps.max_combined_tex… in getHostDriverCaps() 674 m_gles2_iface->getIntegerv(GL_MAX_TEXTURE_SIZE, &m_hostDriverCaps.max_texture_size); in getHostDriverCaps() 675 …m_gles2_iface->getIntegerv(GL_MAX_CUBE_MAP_TEXTURE_SIZE, &m_hostDriverCaps.max_texture_size_cube_m… in getHostDriverCaps() 676 … m_gles2_iface->getIntegerv(GL_MAX_RENDERBUFFER_SIZE, &m_hostDriverCaps.max_renderbuffer_size); in getHostDriverCaps() 682 … m_gles2_iface->getIntegerv(GL_MAX_COLOR_ATTACHMENTS, &m_hostDriverCaps.max_color_attachments); in getHostDriverCaps() 683 m_gles2_iface->getIntegerv(GL_MAX_DRAW_BUFFERS, &m_hostDriverCaps.max_draw_buffers); in getHostDriverCaps() [all …]
|
D | eglDisplay.h | 128 HostDriverCaps m_hostDriverCaps; variable
|
/hardware/google/gfxstream/guest/OpenglCodecCommon/ |
D | GLClientState.cpp | 905 return m_hostDriverCaps.max_texture_size; in getMaxTextureSize() 909 return m_hostDriverCaps.max_texture_size_3d; in getMaxTextureSize3D() 913 return m_hostDriverCaps.max_texture_size_cube_map; in getMaxTextureSizeCubeMap() 2331 return m_hostDriverCaps.max_color_attachments; in getMaxColorAttachments() 2335 return m_hostDriverCaps.max_draw_buffers; in getMaxDrawBuffers() 2385 props.colorAttachmenti_textures.resize(m_hostDriverCaps.max_color_attachments, 0); in addFreshFramebuffer() 2386 props.colorAttachmenti_texture_levels.resize(m_hostDriverCaps.max_color_attachments, 0); in addFreshFramebuffer() 2387 props.colorAttachmenti_texture_layers.resize(m_hostDriverCaps.max_color_attachments, 0); in addFreshFramebuffer() 2398 props.colorAttachmenti_hasTex.resize(m_hostDriverCaps.max_color_attachments, false); in addFreshFramebuffer() 2403 props.colorAttachmenti_rbos.resize(m_hostDriverCaps.max_color_attachments, 0); in addFreshFramebuffer() [all …]
|
/hardware/google/gfxstream/guest/OpenglCodecCommon/include/gfxstream/guest/ |
D | GLClientState.h | 647 HostDriverCaps m_hostDriverCaps; variable
|