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

Side by Side Diff: ppapi/lib/gl/gles2/gles2.c

Issue 6804032: Add TLS-SRP (RFC 5054) support Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 8 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
PhistucK 2011/04/07 07:08:28 Same here.
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 // This file is auto-generated. DO NOT EDIT! 5 // This file is auto-generated. DO NOT EDIT!
6 6
7 #include <GLES2/gl2.h> 7 #include <GLES2/gl2.h>
8 #include "ppapi/lib/gl/gles2/gl2ext_ppapi.h" 8 #include "ppapi/lib/gl/gles2/gl2ext_ppapi.h"
9 9
10 void GL_APIENTRY glActiveTexture(GLenum texture) { 10 void GL_APIENTRY glActiveTexture(GLenum texture) {
11 glGetInterfacePPAPI()->ActiveTexture(glGetCurrentContextPPAPI(), texture); 11 glGetInterfacePPAPI()->ActiveTexture(glGetCurrentContextPPAPI(), texture);
(...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after
744 const void* ptr) { 744 const void* ptr) {
745 glGetInterfacePPAPI()->VertexAttribPointer( 745 glGetInterfacePPAPI()->VertexAttribPointer(
746 glGetCurrentContextPPAPI(), indx, size, type, normalized, stride, ptr); 746 glGetCurrentContextPPAPI(), indx, size, type, normalized, stride, ptr);
747 } 747 }
748 748
749 void GL_APIENTRY glViewport(GLint x, GLint y, GLsizei width, GLsizei height) { 749 void GL_APIENTRY glViewport(GLint x, GLint y, GLsizei width, GLsizei height) {
750 glGetInterfacePPAPI()->Viewport( 750 glGetInterfacePPAPI()->Viewport(
751 glGetCurrentContextPPAPI(), x, y, width, height); 751 glGetCurrentContextPPAPI(), x, y, width, height);
752 } 752 }
753 753
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698