Add copyright and #ifndef / #define

git-svn-id: http://skia.googlecode.com/svn/trunk@3167 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
bsalomon@google.com 2012-02-10 21:35:35 +00:00
parent 4072556641
commit 4ebf2b4fd2
2 changed files with 22 additions and 0 deletions

View File

@ -1,3 +1,11 @@
/*
* Copyright 2012 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "GrGLContextInfo.h"
GrGLContextInfo::~GrGLContextInfo() {

View File

@ -1,3 +1,15 @@
/*
* Copyright 2012 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef GrGLContextInfo_DEFINED
#define GrGLContextInfo_DEFINED
#include "GrGLInterface.h"
#include "GrGLSL.h"
@ -66,3 +78,5 @@ private:
GrGLSLGeneration fGLSLGeneration;
SkString fExtensionString;
};
#endif