From d0a0f6575ed4207c5b59d6c702ab2560843ccb3f Mon Sep 17 00:00:00 2001
From: foreman
Date: Thu, 16 Nov 2017 18:22:09 -0500
Subject: [PATCH] P4 to Git Change 1483566 by gandryey@gera-lnx-rcf on
2017/11/16 18:12:27
SWDEV-79445 - Remove unused fields
Affected files ...
... //depot/stg/opencl/drivers/opencl/api/opencl/amdocl/cl_gl_amd.hpp#19 edit
---
opencl/api/opencl/amdocl/cl_gl_amd.hpp | 12 +-----------
1 file changed, 1 insertion(+), 11 deletions(-)
diff --git a/opencl/api/opencl/amdocl/cl_gl_amd.hpp b/opencl/api/opencl/amdocl/cl_gl_amd.hpp
index 332bd95d28..15bc5f8d57 100644
--- a/opencl/api/opencl/amdocl/cl_gl_amd.hpp
+++ b/opencl/api/opencl/amdocl/cl_gl_amd.hpp
@@ -43,12 +43,6 @@ protected:
GLint gliDepth_;
GLenum glCubemapFace_;
GLsizei glNumSamples_;
- //! Need to pass PBO name from acquire to release
- GLuint gluiPBO_;
-
- // @todo: TBD: Do we need to sync data after access
- // or it'll be done by the GL driver?
- cl_int cliChecksum_;
public:
//! GLObject constructor initializes member variables
@@ -73,8 +67,7 @@ public:
gliHeight_(gliHeight),
gliDepth_(gliDepth),
glCubemapFace_(glCubemapFace),
- glNumSamples_(glNumSamples),
- cliChecksum_(0)
+ glNumSamples_(glNumSamples)
{
}
@@ -93,9 +86,6 @@ public:
cl_gl_object_type getCLGLObjectType() const { return clGLType_; }
GLenum getCubemapFace() const {return glCubemapFace_;}
GLsizei getNumSamples() const { return glNumSamples_;}
- void setPBOName(GLuint gluiName) {gluiPBO_ = gluiName;}
- GLuint getPBOName() const {return gluiPBO_;}
-
};