Searched defs:bucket_id (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/gpu/command_buffer/client/
H A Dcmd_buffer_helper.h150 void SetBucketSize(uint32 bucket_id, uint32 size) { argument
153 cmd->Init(bucket_id, size);
157 void SetBucketData(uint32 bucket_id, argument
164 cmd->Init(bucket_id,
173 uint32 bucket_id, uint32 offset, const void* data, uint32 size) {
177 cmd->Init(bucket_id, offset, size);
182 void GetBucketStart(uint32 bucket_id, argument
190 cmd->Init(bucket_id,
199 void GetBucketData(uint32 bucket_id, argument
206 cmd->Init(bucket_id,
172 SetBucketDataImmediate( uint32 bucket_id, uint32 offset, const void* data, uint32 size) argument
[all...]
H A Dgles2_cmd_helper_autogen.h241 GLsizei height, GLint border, GLuint bucket_id) {
245 c->Init(target, level, internalformat, width, height, border, bucket_id);
276 GLsizei height, GLenum format, GLuint bucket_id) {
281 target, level, xoffset, yoffset, width, height, format, bucket_id);
704 void GetProgramInfoLog(GLuint program, uint32 bucket_id) { argument
708 c->Init(program, bucket_id);
731 void GetShaderInfoLog(GLuint shader, uint32 bucket_id) { argument
735 c->Init(shader, bucket_id);
749 void GetShaderSource(GLuint shader, uint32 bucket_id) { argument
753 c->Init(shader, bucket_id);
239 CompressedTexImage2DBucket( GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLuint bucket_id) argument
274 CompressedTexSubImage2DBucket( GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLuint bucket_id) argument
757 GetString(GLenum name, uint32 bucket_id) argument
1653 InsertEventMarkerEXT(GLuint bucket_id) argument
1661 PushGroupMarkerEXT(GLuint bucket_id) argument
1781 EnableFeatureCHROMIUM( GLuint bucket_id, uint32 result_shm_id, uint32 result_shm_offset) argument
1798 GetRequestableExtensionsCHROMIUM(uint32 bucket_id) argument
1806 RequestExtensionCHROMIUM(uint32 bucket_id) argument
1826 GetProgramInfoCHROMIUM(GLuint program, uint32 bucket_id) argument
1851 GetTranslatedShaderSourceANGLE(GLuint shader, uint32 bucket_id) argument
1914 GenMailboxCHROMIUM(GLuint bucket_id) argument
2006 TraceBeginCHROMIUM(GLuint bucket_id) argument
[all...]
H A Dgles2_implementation.cc448 bool GLES2Implementation::GetBucketContents(uint32 bucket_id, argument
464 bucket_id, GetResultShmId(), GetResultShmOffset(),
478 bucket_id, offset, buffer.size(), buffer.shm_id(), buffer.offset());
490 helper_->SetBucketSize(bucket_id, 0);
496 uint32 bucket_id, const void* data, size_t size) {
498 helper_->SetBucketSize(bucket_id, size);
509 bucket_id, offset, buffer.size(), buffer.shm_id(), buffer.offset());
517 uint32 bucket_id, const char* str) {
521 SetBucketContents(bucket_id, str, strlen(str) + 1);
523 helper_->SetBucketSize(bucket_id,
495 SetBucketContents( uint32 bucket_id, const void* data, size_t size) argument
516 SetBucketAsCString( uint32 bucket_id, const char* str) argument
527 GetBucketAsString( uint32 bucket_id, std::string* str) argument
543 SetBucketAsString( uint32 bucket_id, const std::string& str) argument
[all...]
H A Dgles2_implementation_unittest.cc470 bool GetBucketContents(uint32 bucket_id, std::vector<int8>* data) { argument
471 return gl_->GetBucketContents(bucket_id, data);
/external/chromium_org/gpu/command_buffer/service/
H A Dcommon_decoder.cc86 CommonDecoder::Bucket* CommonDecoder::GetBucket(uint32 bucket_id) const {
87 BucketMap::const_iterator iter(buckets_.find(bucket_id));
91 CommonDecoder::Bucket* CommonDecoder::CreateBucket(uint32 bucket_id) { argument
92 Bucket* bucket = GetBucket(bucket_id);
95 buckets_[bucket_id] = linked_ptr<Bucket>(bucket);
182 uint32 bucket_id = args.bucket_id; local
185 Bucket* bucket = CreateBucket(bucket_id);
193 uint32 bucket_id = args.bucket_id; local
216 uint32 bucket_id = args.bucket_id; local
235 uint32 bucket_id = args.bucket_id; local
272 uint32 bucket_id = args.bucket_id; local
[all...]
H A Dgles2_cmd_decoder_autogen.h2899 GLuint bucket_id = static_cast<GLuint>(c.bucket_id); local
2900 Bucket* bucket = GetBucket(bucket_id);
2914 GLuint bucket_id = static_cast<GLuint>(c.bucket_id); local
2915 Bucket* bucket = GetBucket(bucket_id);
H A Dgles2_cmd_decoder_unittest_base.cc390 uint32 bucket_id, const char* str) {
393 cmd1.Init(bucket_id, size);
398 cmd2.Init(bucket_id, 0, size, kSharedMemoryId, kSharedMemoryOffset);
802 GLsizei size, uint32 bucket_id) {
813 CommonDecoder::Bucket* bucket = decoder_->CreateBucket(bucket_id);
818 bucket_id);
389 SetBucketAsCString( uint32 bucket_id, const char* str) argument
799 DoCompressedTexImage2D( GLenum target, GLint level, GLenum format, GLsizei width, GLsizei height, GLint border, GLsizei size, uint32 bucket_id) argument
H A Dgles2_cmd_decoder.cc6362 uint32 bucket_id = static_cast<uint32>(c.bucket_id); local
6363 Bucket* bucket = CreateBucket(bucket_id);
6377 uint32 bucket_id = static_cast<uint32>(c.bucket_id); local
6378 Bucket* bucket = CreateBucket(bucket_id);
6394 uint32 bucket_id = static_cast<uint32>(c.bucket_id); local
6395 Bucket* bucket = CreateBucket(bucket_id);
6409 uint32 bucket_id local
9077 uint32 bucket_id = c.bucket_id; local
9947 uint32 bucket_id = static_cast<uint32>(c.bucket_id); local
[all...]
/external/chromium_org/gpu/command_buffer/common/
H A Dcmd_buffer_common.h255 bucket_id = _bucket_id;
264 uint32 bucket_id; member in struct:gpu::cmd::SetBucketSize
271 COMPILE_ASSERT(offsetof(SetBucketSize, bucket_id) == 4,
294 bucket_id = _bucket_id;
316 uint32 bucket_id; member in struct:gpu::cmd::SetBucketData
326 COMPILE_ASSERT(offsetof(SetBucketData, bucket_id) == 4,
353 bucket_id = _bucket_id;
369 uint32 bucket_id; member in struct:gpu::cmd::SetBucketDataImmediate
378 COMPILE_ASSERT(offsetof(SetBucketDataImmediate, bucket_id) == 4,
413 bucket_id
438 uint32 bucket_id; member in struct:gpu::cmd::GetBucketStart
501 uint32 bucket_id; member in struct:gpu::cmd::GetBucketData
[all...]
H A Dgles2_cmd_format_autogen.h1238 bucket_id = _bucket_id;
1258 uint32 bucket_id; member in struct:CompressedTexImage2DBucket
1277 COMPILE_ASSERT(offsetof(CompressedTexImage2DBucket, bucket_id) == 28,
1456 bucket_id = _bucket_id;
1477 uint32 bucket_id; member in struct:CompressedTexSubImage2DBucket
1498 COMPILE_ASSERT(offsetof(CompressedTexSubImage2DBucket, bucket_id) == 32,
3674 bucket_id = _bucket_id;
3684 uint32 bucket_id; member in struct:GetProgramInfoLog
3693 COMPILE_ASSERT(offsetof(GetProgramInfoLog, bucket_id) == 8,
3818 bucket_id
3828 uint32 bucket_id; member in struct:GetShaderInfoLog
3933 uint32 bucket_id; member in struct:GetShaderSource
3971 uint32 bucket_id; member in struct:GetString
8877 uint32 bucket_id; member in struct:InsertEventMarkerEXT
8911 uint32 bucket_id; member in struct:PushGroupMarkerEXT
9487 uint32 bucket_id; member in struct:EnableFeatureCHROMIUM
9569 uint32 bucket_id; member in struct:GetRequestableExtensionsCHROMIUM
9603 uint32 bucket_id; member in struct:RequestExtensionCHROMIUM
9707 uint32 bucket_id; member in struct:GetProgramInfoCHROMIUM
9833 uint32 bucket_id; member in struct:GetTranslatedShaderSourceANGLE
10174 uint32 bucket_id; member in struct:GenMailboxCHROMIUM
10609 uint32 bucket_id; member in struct:TraceBeginCHROMIUM
[all...]

Completed in 171 milliseconds