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

Side by Side Diff: src/gpu/gl/GrGLNoOpInterface.cpp

Issue 662583003: Add gpu support for glVertexAttrb1f, 2fv, and 3fv (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 1 month 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
OLDNEW
1 /* 1 /*
2 * Copyright 2013 Google Inc. 2 * Copyright 2013 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "GrGLNoOpInterface.h" 8 #include "GrGLNoOpInterface.h"
9 #include "SkString.h" 9 #include "SkString.h"
10 #include "SkThread.h" 10 #include "SkThread.h"
(...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 GrGLboolean transpose, 360 GrGLboolean transpose,
361 const GrGLfloat* value) { 361 const GrGLfloat* value) {
362 } 362 }
363 363
364 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniformMatrix4fv(GrGLint location, 364 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLUniformMatrix4fv(GrGLint location,
365 GrGLsizei count, 365 GrGLsizei count,
366 GrGLboolean transpose, 366 GrGLboolean transpose,
367 const GrGLfloat* value) { 367 const GrGLfloat* value) {
368 } 368 }
369 369
370 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttrib1f(GrGLuint indx, const GrGLfloa t value) {
371 }
372
373 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttrib2fv(GrGLuint indx, const GrGLflo at* values) {
374 }
375
376 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttrib3fv(GrGLuint indx, const GrGLflo at* values) {
377 }
378
370 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttrib4fv(GrGLuint indx, const GrGLflo at* values) { 379 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttrib4fv(GrGLuint indx, const GrGLflo at* values) {
371 } 380 }
372 381
373 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttribPointer(GrGLuint indx, 382 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLVertexAttribPointer(GrGLuint indx,
374 GrGLint size, 383 GrGLint size,
375 GrGLenum type, 384 GrGLenum type,
376 GrGLboolean normalized, 385 GrGLboolean normalized,
377 GrGLsizei stride, 386 GrGLsizei stride,
378 const GrGLvoid* ptr) { 387 const GrGLvoid* ptr) {
379 } 388 }
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
646 static int gUniLocation = 0; 655 static int gUniLocation = 0;
647 return ++gUniLocation; 656 return ++gUniLocation;
648 } 657 }
649 658
650 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLInsertEventMarker(GrGLsizei length, const cha r* marker) { 659 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLInsertEventMarker(GrGLsizei length, const cha r* marker) {
651 } 660 }
652 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPushGroupMarker(GrGLsizei length , const cha r* marker) { 661 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPushGroupMarker(GrGLsizei length , const cha r* marker) {
653 } 662 }
654 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPopGroupMarker() { 663 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLPopGroupMarker() {
655 } 664 }
OLDNEW
« no previous file with comments | « src/gpu/gl/GrGLNoOpInterface.h ('k') | src/gpu/gl/android/GrGLCreateNativeInterface_android.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698