diff options
author | gman@chromium.org <gman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-18 22:49:47 +0000 |
---|---|---|
committer | gman@chromium.org <gman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-18 22:49:47 +0000 |
commit | c6f6f20a02720de423085e110e27dc22589ea186 (patch) | |
tree | 25696a8ab55664c391b3a60c760e2fabd41eba60 /gpu/command_buffer/service/context_group.cc | |
parent | 3f542024ab41547c02b079bb98101d8b3f1b8581 (diff) | |
download | chromium_src-c6f6f20a02720de423085e110e27dc22589ea186.zip chromium_src-c6f6f20a02720de423085e110e27dc22589ea186.tar.gz chromium_src-c6f6f20a02720de423085e110e27dc22589ea186.tar.bz2 |
revert last CL
TBR=gman@chromium.org
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47579 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/command_buffer/service/context_group.cc')
-rw-r--r-- | gpu/command_buffer/service/context_group.cc | 43 |
1 files changed, 6 insertions, 37 deletions
diff --git a/gpu/command_buffer/service/context_group.cc b/gpu/command_buffer/service/context_group.cc index 71b796c..7a62c72 100644 --- a/gpu/command_buffer/service/context_group.cc +++ b/gpu/command_buffer/service/context_group.cc @@ -17,23 +17,12 @@ namespace gles2 { ContextGroup::ContextGroup() : initialized_(false), max_vertex_attribs_(0u), - max_texture_units_(0u), - max_texture_image_units_(0u), - max_vertex_texture_image_units_(0u), - max_fragment_uniform_vectors_(0u), - max_varying_vectors_(0u), - max_vertex_uniform_vectors_(0u) { + max_texture_units_(0u) { } ContextGroup::~ContextGroup() { } -static void GetIntegerv(GLenum pname, uint32* var) { - GLint value = 0; - glGetIntegerv(pname, &value); - *var = value; -} - bool ContextGroup::Initialize() { if (initialized_) { return true; @@ -46,11 +35,14 @@ bool ContextGroup::Initialize() { program_manager_.reset(new ProgramManager()); // Lookup GL things we need to know. - GetIntegerv(GL_MAX_VERTEX_ATTRIBS, &max_vertex_attribs_); + GLint value; + glGetIntegerv(GL_MAX_VERTEX_ATTRIBS, &value); + max_vertex_attribs_ = value; const GLuint kGLES2RequiredMiniumumVertexAttribs = 8u; DCHECK_GE(max_vertex_attribs_, kGLES2RequiredMiniumumVertexAttribs); - GetIntegerv(GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS, &max_texture_units_); + glGetIntegerv(GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS, &value); + max_texture_units_ = value; const GLuint kGLES2RequiredMiniumumTextureUnits = 8u; DCHECK_GE(max_texture_units_, kGLES2RequiredMiniumumTextureUnits); @@ -60,29 +52,6 @@ bool ContextGroup::Initialize() { glGetIntegerv(GL_MAX_CUBE_MAP_TEXTURE_SIZE, &max_cube_map_texture_size); texture_manager_.reset(new TextureManager(max_texture_size, max_cube_map_texture_size)); - - GetIntegerv(GL_MAX_TEXTURE_IMAGE_UNITS, &max_texture_image_units_); - GetIntegerv( - GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS, &max_vertex_texture_image_units_); - -#if defined(GLES2_GPU_SERVICE_BACKEND_NATIVE_GLES2) - - GetIntegerv(GL_MAX_FRAGMENT_UNIFORM_VECTORS, &max_fragment_uniform_vectors_); - GetIntegerv(GL_MAX_VARYING_VECTORS, &max_varying_vectors_); - GetIntegerv(GL_MAX_VERTEX_UNIFORM_VECTORS, &max_vertex_uniform_vectors_); - -#else // !defined(GLES2_GPU_SERVICE_BACKEND_NATIVE_GLES2) - - GetIntegerv( - GL_MAX_FRAGMENT_UNIFORM_COMPONENTS, &max_fragment_uniform_vectors_); - max_fragment_uniform_vectors_ /= 4; - GetIntegerv(GL_MAX_VARYING_FLOATS, &max_varying_vectors_); - max_varying_vectors_ /= 4; - GetIntegerv(GL_MAX_VERTEX_UNIFORM_COMPONENTS, &max_vertex_uniform_vectors_); - max_vertex_uniform_vectors_ /= 4; - -#endif // !defined(GLES2_GPU_SERVICE_BACKEND_NATIVE_GLES2) - initialized_ = true; return true; } |