Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Side by Side Diff: gpu/command_buffer/service/gles2_cmd_decoder.cc

Issue 661220: Added support for glGetString, glGetShaderSource,... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "gpu/command_buffer/service/gles2_cmd_decoder.h" 5 #include "gpu/command_buffer/service/gles2_cmd_decoder.h"
6 6
7 #include <stdio.h> 7 #include <stdio.h>
8 8
9 #include <algorithm> 9 #include <algorithm>
10 #include <vector> 10 #include <vector>
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 const CommandInfo g_command_info[] = { 96 const CommandInfo g_command_info[] = {
97 #define GLES2_CMD_OP(name) { \ 97 #define GLES2_CMD_OP(name) { \
98 name::kArgFlags, \ 98 name::kArgFlags, \
99 sizeof(name) / sizeof(CommandBufferEntry) - 1, }, /* NOLINT */ \ 99 sizeof(name) / sizeof(CommandBufferEntry) - 1, }, /* NOLINT */ \
100 100
101 GLES2_COMMAND_LIST(GLES2_CMD_OP) 101 GLES2_COMMAND_LIST(GLES2_CMD_OP)
102 102
103 #undef GLES2_CMD_OP 103 #undef GLES2_CMD_OP
104 }; 104 };
105 105
106 namespace GLErrorBit {
107 enum GLErrorBit {
108 kNoError = 0,
109 kInvalidEnum = (1 << 0),
110 kInvalidValue = (1 << 1),
111 kInvalidOperation = (1 << 2),
112 kOutOfMemory = (1 << 3),
113 kInvalidFrameBufferOperation = (1 << 4),
114 };
115 }
116
117 uint32 GLErrorToErrorBit(GLenum error) {
118 switch (error) {
119 case GL_INVALID_ENUM:
120 return GLErrorBit::kInvalidEnum;
121 case GL_INVALID_VALUE:
122 return GLErrorBit::kInvalidValue;
123 case GL_INVALID_OPERATION:
124 return GLErrorBit::kInvalidOperation;
125 case GL_OUT_OF_MEMORY:
126 return GLErrorBit::kOutOfMemory;
127 case GL_INVALID_FRAMEBUFFER_OPERATION:
128 return GLErrorBit::kInvalidFrameBufferOperation;
129 default:
130 DCHECK(false);
131 return GLErrorBit::kNoError;
132 }
133 }
134
135 GLenum GLErrorBitToGLError(uint32 error_bit) {
136 switch (error_bit) {
137 case GLErrorBit::kInvalidEnum:
138 return GL_INVALID_ENUM;
139 case GLErrorBit::kInvalidValue:
140 return GL_INVALID_VALUE;
141 case GLErrorBit::kInvalidOperation:
142 return GL_INVALID_OPERATION;
143 case GLErrorBit::kOutOfMemory:
144 return GL_OUT_OF_MEMORY;
145 case GLErrorBit::kInvalidFrameBufferOperation:
146 return GL_INVALID_FRAMEBUFFER_OPERATION;
147 default:
148 DCHECK(false);
149 return GL_NO_ERROR;
150 }
151 }
152
153 // } // anonymous namespace. 106 // } // anonymous namespace.
154 107
155 GLES2Decoder::GLES2Decoder(ContextGroup* group) 108 GLES2Decoder::GLES2Decoder(ContextGroup* group)
156 : group_(group), 109 : group_(group),
157 #if defined(UNIT_TEST) 110 #if defined(UNIT_TEST)
158 debug_(false) { 111 debug_(false) {
159 #elif defined(OS_LINUX) 112 #elif defined(OS_LINUX)
160 debug_(false), 113 debug_(false),
161 window_(NULL) { 114 window_(NULL) {
162 #elif defined(OS_WIN) 115 #elif defined(OS_WIN)
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
481 434
482 // Wrapper for glDisableVertexAttribArray. 435 // Wrapper for glDisableVertexAttribArray.
483 void DoDisableVertexAttribArray(GLuint index); 436 void DoDisableVertexAttribArray(GLuint index);
484 437
485 // Wrapper for glEnableVertexAttribArray. 438 // Wrapper for glEnableVertexAttribArray.
486 void DoEnableVertexAttribArray(GLuint index); 439 void DoEnableVertexAttribArray(GLuint index);
487 440
488 // Wrapper for glGenerateMipmap 441 // Wrapper for glGenerateMipmap
489 void DoGenerateMipmap(GLenum target); 442 void DoGenerateMipmap(GLenum target);
490 443
444 // Wrapper for glGetShaderiv
445 void DoGetShaderiv(GLuint shader, GLenum pname, GLint* params);
446
491 // Wrapper for glGetShaderSource. 447 // Wrapper for glGetShaderSource.
492 void DoGetShaderSource( 448 void DoGetShaderSource(
493 GLuint shader, GLsizei bufsize, GLsizei* length, char* dst); 449 GLuint shader, GLsizei bufsize, GLsizei* length, char* dst);
494 450
495 // Wrapper for glLinkProgram 451 // Wrapper for glLinkProgram
496 void DoLinkProgram(GLuint program); 452 void DoLinkProgram(GLuint program);
497 453
498 // Swaps the buffers (copies/renders to the current window). 454 // Swaps the buffers (copies/renders to the current window).
499 void DoSwapBuffers(); 455 void DoSwapBuffers();
500 456
(...skipping 1294 matching lines...) Expand 10 before | Expand all | Expand 10 after
1795 current_program_ = info; 1751 current_program_ = info;
1796 glUseProgram(program); 1752 glUseProgram(program);
1797 } 1753 }
1798 1754
1799 GLenum GLES2DecoderImpl::GetGLError() { 1755 GLenum GLES2DecoderImpl::GetGLError() {
1800 // Check the GL error first, then our wrapped error. 1756 // Check the GL error first, then our wrapped error.
1801 GLenum error = glGetError(); 1757 GLenum error = glGetError();
1802 if (error == GL_NO_ERROR && error_bits_ != 0) { 1758 if (error == GL_NO_ERROR && error_bits_ != 0) {
1803 for (uint32 mask = 1; mask != 0; mask = mask << 1) { 1759 for (uint32 mask = 1; mask != 0; mask = mask << 1) {
1804 if ((error_bits_ & mask) != 0) { 1760 if ((error_bits_ & mask) != 0) {
1805 error = GLErrorBitToGLError(mask); 1761 error = GLES2Util::GLErrorBitToGLError(mask);
1806 break; 1762 break;
1807 } 1763 }
1808 } 1764 }
1809 } 1765 }
1810 1766
1811 if (error != GL_NO_ERROR) { 1767 if (error != GL_NO_ERROR) {
1812 // There was an error, clear the corresponding wrapped error. 1768 // There was an error, clear the corresponding wrapped error.
1813 error_bits_ &= ~GLErrorToErrorBit(error); 1769 error_bits_ &= ~GLES2Util::GLErrorToErrorBit(error);
1814 } 1770 }
1815 return error; 1771 return error;
1816 } 1772 }
1817 1773
1818 void GLES2DecoderImpl::SetGLError(GLenum error) { 1774 void GLES2DecoderImpl::SetGLError(GLenum error) {
1819 error_bits_ |= GLErrorToErrorBit(error); 1775 error_bits_ |= GLES2Util::GLErrorToErrorBit(error);
1820 } 1776 }
1821 1777
1822 void GLES2DecoderImpl::CopyRealGLErrorsToWrapper() { 1778 void GLES2DecoderImpl::CopyRealGLErrorsToWrapper() {
1823 GLenum error; 1779 GLenum error;
1824 while ((error = glGetError()) != GL_NO_ERROR) { 1780 while ((error = glGetError()) != GL_NO_ERROR) {
1825 SetGLError(error); 1781 SetGLError(error);
1826 } 1782 }
1827 } 1783 }
1828 1784
1829 bool GLES2DecoderImpl::VertexAttribInfo::CanAccess(GLuint index) { 1785 bool GLES2DecoderImpl::VertexAttribInfo::CanAccess(GLuint index) {
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
2041 return; 1997 return;
2042 } 1998 }
2043 // TODO(gman): Run shader through compiler that converts GL ES 2.0 shader 1999 // TODO(gman): Run shader through compiler that converts GL ES 2.0 shader
2044 // to DesktopGL shader and pass that to glShaderSource and then 2000 // to DesktopGL shader and pass that to glShaderSource and then
2045 // glCompileShader. 2001 // glCompileShader.
2046 const char* ptr = info->source().c_str(); 2002 const char* ptr = info->source().c_str();
2047 glShaderSource(shader, 1, &ptr, NULL); 2003 glShaderSource(shader, 1, &ptr, NULL);
2048 glCompileShader(shader); 2004 glCompileShader(shader);
2049 }; 2005 };
2050 2006
2007 void GLES2DecoderImpl::DoGetShaderiv(
2008 GLuint shader, GLenum pname, GLint* params) {
2009 ShaderManager::ShaderInfo* info = GetShaderInfo(shader);
2010 if (!info) {
2011 SetGLError(GL_INVALID_OPERATION);
2012 return;
2013 }
2014 if (pname == GL_SHADER_SOURCE_LENGTH) {
2015 *params = info->source().size();
2016 } else {
2017 glGetShaderiv(shader, pname, params);
2018 }
2019 }
2020
2051 void GLES2DecoderImpl::DoGetShaderSource( 2021 void GLES2DecoderImpl::DoGetShaderSource(
2052 GLuint shader, GLsizei bufsize, GLsizei* length, char* dst) { 2022 GLuint shader, GLsizei bufsize, GLsizei* length, char* dst) {
2053 ShaderManager::ShaderInfo* info = GetShaderInfo(shader); 2023 ShaderManager::ShaderInfo* info = GetShaderInfo(shader);
2054 if (!info) { 2024 if (!info) {
2055 SetGLError(GL_INVALID_OPERATION); 2025 SetGLError(GL_INVALID_OPERATION);
2056 return; 2026 return;
2057 } 2027 }
2058 const std::string& source = info->source(); 2028 const std::string& source = info->source();
2059 GLsizei size = std::min(bufsize - 1, static_cast<GLsizei>(source.size())); 2029 GLsizei size = std::min(bufsize - 1, static_cast<GLsizei>(source.size()));
2060 if (length) { 2030 if (length) {
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
2270 GLint* location = GetSharedMemoryAs<GLint*>( 2240 GLint* location = GetSharedMemoryAs<GLint*>(
2271 c.location_shm_id, c.location_shm_offset, sizeof(GLint)); 2241 c.location_shm_id, c.location_shm_offset, sizeof(GLint));
2272 if (!location || !name) { 2242 if (!location || !name) {
2273 return error::kOutOfBounds; 2243 return error::kOutOfBounds;
2274 } 2244 }
2275 String name_str(name, name_size); 2245 String name_str(name, name_size);
2276 *location = info->GetUniformLocation(name_str); 2246 *location = info->GetUniformLocation(name_str);
2277 return error::kNoError; 2247 return error::kNoError;
2278 } 2248 }
2279 2249
2250 error::Error GLES2DecoderImpl::HandleGetString(
2251 uint32 immediate_data_size, const gles2::GetString& c) {
2252 GLenum name = static_cast<GLenum>(c.name);
2253 if (!ValidateGLenumStringType(name)) {
2254 SetGLError(GL_INVALID_ENUM);
2255 return error::kNoError;
2256 }
2257 Bucket* bucket = CreateBucket(c.bucket_id);
2258 bucket->SetFromString(reinterpret_cast<const char*>(glGetString(name)));
2259 return error::kNoError;
2260 }
2261
2280 error::Error GLES2DecoderImpl::HandleBufferData( 2262 error::Error GLES2DecoderImpl::HandleBufferData(
2281 uint32 immediate_data_size, const gles2::BufferData& c) { 2263 uint32 immediate_data_size, const gles2::BufferData& c) {
2282 GLenum target = static_cast<GLenum>(c.target); 2264 GLenum target = static_cast<GLenum>(c.target);
2283 GLsizeiptr size = static_cast<GLsizeiptr>(c.size); 2265 GLsizeiptr size = static_cast<GLsizeiptr>(c.size);
2284 uint32 data_shm_id = static_cast<uint32>(c.data_shm_id); 2266 uint32 data_shm_id = static_cast<uint32>(c.data_shm_id);
2285 uint32 data_shm_offset = static_cast<uint32>(c.data_shm_offset); 2267 uint32 data_shm_offset = static_cast<uint32>(c.data_shm_offset);
2286 GLenum usage = static_cast<GLenum>(c.usage); 2268 GLenum usage = static_cast<GLenum>(c.usage);
2287 const void* data = NULL; 2269 const void* data = NULL;
2288 if (data_shm_id != 0 || data_shm_offset != 0) { 2270 if (data_shm_id != 0 || data_shm_offset != 0) {
2289 data = GetSharedMemoryAs<const void*>(data_shm_id, data_shm_offset, size); 2271 data = GetSharedMemoryAs<const void*>(data_shm_id, data_shm_offset, size);
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
2430 GLsizei image_size = static_cast<GLsizei>(c.imageSize); 2412 GLsizei image_size = static_cast<GLsizei>(c.imageSize);
2431 const void* data = GetImmediateDataAs<const void*>( 2413 const void* data = GetImmediateDataAs<const void*>(
2432 c, image_size, immediate_data_size); 2414 c, image_size, immediate_data_size);
2433 if (!data) { 2415 if (!data) {
2434 return error::kOutOfBounds; 2416 return error::kOutOfBounds;
2435 } 2417 }
2436 return DoCompressedTexImage2D( 2418 return DoCompressedTexImage2D(
2437 target, level, internal_format, width, height, border, image_size, data); 2419 target, level, internal_format, width, height, border, image_size, data);
2438 } 2420 }
2439 2421
2440 // TODO(gman): handle CopyTexImage2D because we need to track what was created.
2441
2442 error::Error GLES2DecoderImpl::DoTexImage2D( 2422 error::Error GLES2DecoderImpl::DoTexImage2D(
2443 GLenum target, 2423 GLenum target,
2444 GLint level, 2424 GLint level,
2445 GLenum internal_format, 2425 GLenum internal_format,
2446 GLsizei width, 2426 GLsizei width,
2447 GLsizei height, 2427 GLsizei height,
2448 GLint border, 2428 GLint border,
2449 GLenum format, 2429 GLenum format,
2450 GLenum type, 2430 GLenum type,
2451 const void* pixels, 2431 const void* pixels,
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
2794 return error::kNoError; 2774 return error::kNoError;
2795 } 2775 }
2796 2776
2797 // Include the auto-generated part of this file. We split this because it means 2777 // Include the auto-generated part of this file. We split this because it means
2798 // we can easily edit the non-auto generated parts right here in this file 2778 // we can easily edit the non-auto generated parts right here in this file
2799 // instead of having to edit some template or the code generator. 2779 // instead of having to edit some template or the code generator.
2800 #include "gpu/command_buffer/service/gles2_cmd_decoder_autogen.h" 2780 #include "gpu/command_buffer/service/gles2_cmd_decoder_autogen.h"
2801 2781
2802 } // namespace gles2 2782 } // namespace gles2
2803 } // namespace gpu 2783 } // namespace gpu
OLDNEW
« no previous file with comments | « gpu/command_buffer/service/common_decoder.cc ('k') | gpu/command_buffer/service/gles2_cmd_decoder_autogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698