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

Unified Diff: gpu/command_buffer/service/gles2_cmd_decoder.cc

Issue 10543125: gpu: Add support for GLX_EXT_texture_from_pixmap extension. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add image operation queue. Created 8 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: gpu/command_buffer/service/gles2_cmd_decoder.cc
diff --git a/gpu/command_buffer/service/gles2_cmd_decoder.cc b/gpu/command_buffer/service/gles2_cmd_decoder.cc
index 748eb21cd1256913dc7f711e1930f6a834f87d12..4ed5baa225142121e95d50882bbf447a24292f41 100644
--- a/gpu/command_buffer/service/gles2_cmd_decoder.cc
+++ b/gpu/command_buffer/service/gles2_cmd_decoder.cc
@@ -39,6 +39,7 @@
#include "gpu/command_buffer/service/gles2_cmd_copy_texture_chromium.h"
#include "gpu/command_buffer/service/gles2_cmd_validation.h"
#include "gpu/command_buffer/service/gpu_switches.h"
+#include "gpu/command_buffer/service/image_manager.h"
#include "gpu/command_buffer/service/mailbox_manager.h"
#include "gpu/command_buffer/service/memory_tracking.h"
#include "gpu/command_buffer/service/program_manager.h"
@@ -54,6 +55,7 @@
#include "gpu/command_buffer/service/vertex_attrib_manager.h"
#include "gpu/command_buffer/service/vertex_array_manager.h"
#include "ui/gl/gl_context.h"
+#include "ui/gl/gl_image.h"
#include "ui/gl/gl_implementation.h"
#include "ui/gl/gl_surface.h"
#if defined(OS_MACOSX)
@@ -616,6 +618,10 @@ class GLES2DecoderImpl : public base::SupportsWeakPtr<GLES2DecoderImpl>,
return group_->mailbox_manager();
}
+ ImageManager* image_manager() {
+ return group_->image_manager();
+ }
+
VertexArrayManager* vertex_array_manager() {
return vertex_array_manager_.get();
}
@@ -747,6 +753,13 @@ class GLES2DecoderImpl : public base::SupportsWeakPtr<GLES2DecoderImpl>,
void DoProduceTextureCHROMIUM(GLenum target, const GLbyte* key);
void DoConsumeTextureCHROMIUM(GLenum target, const GLbyte* key);
+ void DoBindTexImage2DCHROMIUM(
+ GLenum target,
greggman 2012/10/17 18:32:16 style: indent 4
reveman 2012/10/17 21:22:55 Sure. We have 10 declarations with indent 2 above.
+ GLint image_id);
+ void DoReleaseTexImage2DCHROMIUM(
+ GLenum target,
+ GLint image_id);
+
// Creates a ProgramInfo for the given program.
ProgramManager::ProgramInfo* CreateProgramInfo(
GLuint client_id, GLuint service_id) {
@@ -1268,6 +1281,16 @@ class GLES2DecoderImpl : public base::SupportsWeakPtr<GLES2DecoderImpl>,
return info;
}
+ TextureManager::TextureInfo* GetTextureInfoForTargetUnlessDefault(
+ GLenum target) {
+ TextureManager::TextureInfo* info = GetTextureInfoForTarget(target);
+ if (!info)
+ return NULL;
+ if (info == texture_manager()->GetDefaultTextureInfo(target))
+ return NULL;
+ return info;
+ }
+
GLenum GetBindTargetForSamplerType(GLenum type) {
DCHECK(type == GL_SAMPLER_2D || type == GL_SAMPLER_CUBE ||
type == GL_SAMPLER_EXTERNAL_OES || type == GL_SAMPLER_2D_RECT_ARB);
@@ -8922,18 +8945,15 @@ void GLES2DecoderImpl::DoTexImageIOSurface2DCHROMIUM(
return;
}
- TextureManager::TextureInfo* info = GetTextureInfoForTarget(target);
+ // Default target might be conceptually valid, but disallow it to avoid
+ // accidents.
+ TextureManager::TextureInfo* info = GetTextureInfoForTargetUnlessDefault(
+ target);
if (!info) {
SetGLError(GL_INVALID_OPERATION,
"glTexImageIOSurface2DCHROMIUM", "no rectangle texture bound");
return;
}
- if (info == texture_manager()->GetDefaultTextureInfo(target)) {
- // Maybe this is conceptually valid, but disallow it to avoid accidents.
- SetGLError(GL_INVALID_OPERATION,
- "glTexImageIOSurface2DCHROMIUM", "can't bind default texture");
- return;
- }
// Look up the new IOSurface. Note that because of asynchrony
// between processes this might fail; during live resizing the
@@ -9333,6 +9353,88 @@ void GLES2DecoderImpl::DoPopGroupMarkerEXT(void) {
debug_marker_manager_.PopGroup();
}
+void GLES2DecoderImpl::DoBindTexImage2DCHROMIUM(
+ GLenum target, GLint image_id) {
+ if (target != GL_TEXTURE_2D) {
+ // This might be supported in the future.
+ SetGLError(
+ GL_INVALID_OPERATION,
+ "glBindTexImage2DCHROMIUM", "requires TEXTURE_2D target");
+ return;
+ }
+
+ // Default target might be conceptually valid, but disallow it to avoid
+ // accidents.
+ TextureManager::TextureInfo* info = GetTextureInfoForTargetUnlessDefault(
+ target);
+ if (!info) {
+ SetGLError(GL_INVALID_OPERATION,
+ "glBindTexImage2DCHROMIUM", "no texture bound");
+ return;
+ }
+
+ scoped_refptr<gfx::GLImage> gl_image =
+ image_manager()->LookupImage(image_id);
+ if (!gl_image) {
+ SetGLError(GL_INVALID_OPERATION,
+ "glBindTexImage2DCHROMIUM",
+ "no image found with the given ID");
+ return;
+ }
+
+ if (!gl_image->BindTexImage()) {
+ SetGLError(GL_INVALID_OPERATION,
+ "glBindTexImage2DCHROMIUM",
+ "fail to bind image with the given ID");
+ return;
+ }
+
+ gfx::Size size = gl_image->GetSize();
+ texture_manager()->SetLevelInfo(
+ info, target, 0, GL_RGBA, size.width(), size.height(), 1, 0,
+ GL_RGBA, GL_UNSIGNED_BYTE, true);
+ texture_manager()->SetLevelImage(info, target, 0, gl_image);
+}
+
+void GLES2DecoderImpl::DoReleaseTexImage2DCHROMIUM(
+ GLenum target, GLint image_id) {
+ if (target != GL_TEXTURE_2D) {
+ // This might be supported in the future.
+ SetGLError(
+ GL_INVALID_OPERATION,
+ "glReleaseTexImage2DCHROMIUM", "requires TEXTURE_2D target");
+ return;
+ }
+
+ // Default target might be conceptually valid, but disallow it to avoid
+ // accidents.
+ TextureManager::TextureInfo* info = GetTextureInfoForTargetUnlessDefault(
+ target);
+ if (!info) {
+ SetGLError(GL_INVALID_OPERATION,
+ "glReleaseTexImage2DCHROMIUM", "no texture bound");
+ return;
+ }
+
+ scoped_refptr<gfx::GLImage> gl_image =
+ image_manager()->LookupImage(image_id);
+ if (!gl_image) {
+ SetGLError(GL_INVALID_OPERATION,
+ "glReleaseTexImage2DCHROMIUM",
+ "no image found with the given ID");
+ return;
+ }
+
+ // Do nothing when image is not currently bound.
+ if (info->GetLevelImage(target, 0) != gl_image)
+ return;
+
+ gl_image->ReleaseTexImage();
+
+ texture_manager()->SetLevelInfo(
+ info, target, 0, GL_RGBA, 0, 0, 1, 0,
+ GL_RGBA, GL_UNSIGNED_BYTE, false);
+}
// Include the auto-generated part of this file. We split this because it means
// we can easily edit the non-auto generated parts right here in this file

Powered by Google App Engine
This is Rietveld 408576698