Hash :
98d5db70
Author :
Date :
2022-08-25T16:50:38
Add capture functions for desktop GL entry points The parameter capture functions are left unimplemented for now. Bug: angleproject:7533 Change-Id: Ief356e7401805cf9b417e1f5cc3790011237e03f Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/3858618 Reviewed-by: Jamie Madill <jmadill@chromium.org> Reviewed-by: Cody Northrop <cnorthrop@google.com> Commit-Queue: Eddie Hatfield <eddiehatfield@google.com>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
//
// Copyright 2022 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// capture_gl_2_params.cpp:
// Pointer parameter capture functions for the OpenGL 2.x entry points.
#include "libANGLE/capture/capture_gl_2_autogen.h"
namespace gl
{
// GL 2.0
void CaptureGetVertexAttribdv_params(const State &glState,
bool isCallValid,
GLuint index,
GLenum pname,
GLdouble *params,
angle::ParamCapture *paramCapture)
{
UNIMPLEMENTED();
}
void CaptureVertexAttrib1dv_v(const State &glState,
bool isCallValid,
GLuint index,
const GLdouble *v,
angle::ParamCapture *paramCapture)
{
UNIMPLEMENTED();
}
void CaptureVertexAttrib1sv_v(const State &glState,
bool isCallValid,
GLuint index,
const GLshort *v,
angle::ParamCapture *paramCapture)
{
UNIMPLEMENTED();
}
void CaptureVertexAttrib2dv_v(const State &glState,
bool isCallValid,
GLuint index,
const GLdouble *v,
angle::ParamCapture *paramCapture)
{
UNIMPLEMENTED();
}
void CaptureVertexAttrib2sv_v(const State &glState,
bool isCallValid,
GLuint index,
const GLshort *v,
angle::ParamCapture *paramCapture)
{
UNIMPLEMENTED();
}
void CaptureVertexAttrib3dv_v(const State &glState,
bool isCallValid,
GLuint index,
const GLdouble *v,
angle::ParamCapture *paramCapture)
{
UNIMPLEMENTED();
}
void CaptureVertexAttrib3sv_v(const State &glState,
bool isCallValid,
GLuint index,
const GLshort *v,
angle::ParamCapture *paramCapture)
{
UNIMPLEMENTED();
}
void CaptureVertexAttrib4Nbv_v(const State &glState,
bool isCallValid,
GLuint index,
const GLbyte *v,
angle::ParamCapture *paramCapture)
{
UNIMPLEMENTED();
}
void CaptureVertexAttrib4Niv_v(const State &glState,
bool isCallValid,
GLuint index,
const GLint *v,
angle::ParamCapture *paramCapture)
{
UNIMPLEMENTED();
}
void CaptureVertexAttrib4Nsv_v(const State &glState,
bool isCallValid,
GLuint index,
const GLshort *v,
angle::ParamCapture *paramCapture)
{
UNIMPLEMENTED();
}
void CaptureVertexAttrib4Nubv_v(const State &glState,
bool isCallValid,
GLuint index,
const GLubyte *v,
angle::ParamCapture *paramCapture)
{
UNIMPLEMENTED();
}
void CaptureVertexAttrib4Nuiv_v(const State &glState,
bool isCallValid,
GLuint index,
const GLuint *v,
angle::ParamCapture *paramCapture)
{
UNIMPLEMENTED();
}
void CaptureVertexAttrib4Nusv_v(const State &glState,
bool isCallValid,
GLuint index,
const GLushort *v,
angle::ParamCapture *paramCapture)
{
UNIMPLEMENTED();
}
void CaptureVertexAttrib4bv_v(const State &glState,
bool isCallValid,
GLuint index,
const GLbyte *v,
angle::ParamCapture *paramCapture)
{
UNIMPLEMENTED();
}
void CaptureVertexAttrib4dv_v(const State &glState,
bool isCallValid,
GLuint index,
const GLdouble *v,
angle::ParamCapture *paramCapture)
{
UNIMPLEMENTED();
}
void CaptureVertexAttrib4iv_v(const State &glState,
bool isCallValid,
GLuint index,
const GLint *v,
angle::ParamCapture *paramCapture)
{
UNIMPLEMENTED();
}
void CaptureVertexAttrib4sv_v(const State &glState,
bool isCallValid,
GLuint index,
const GLshort *v,
angle::ParamCapture *paramCapture)
{
UNIMPLEMENTED();
}
void CaptureVertexAttrib4ubv_v(const State &glState,
bool isCallValid,
GLuint index,
const GLubyte *v,
angle::ParamCapture *paramCapture)
{
UNIMPLEMENTED();
}
void CaptureVertexAttrib4uiv_v(const State &glState,
bool isCallValid,
GLuint index,
const GLuint *v,
angle::ParamCapture *paramCapture)
{
UNIMPLEMENTED();
}
void CaptureVertexAttrib4usv_v(const State &glState,
bool isCallValid,
GLuint index,
const GLushort *v,
angle::ParamCapture *paramCapture)
{
UNIMPLEMENTED();
}
} // namespace gl