Sign in
android
/
platform
/
frameworks
/
native
/
0283c73ccf4c54d0ed8e8b479ea76cb1e1f815d8
/
.
/
opengl
/
tools
/
glgen
/
stubs
/
jsr239
/
glGetString.java-impl
blob: 8c7881cfd8906586519520321575eb002a6871ca [
file
] [
log
] [
blame
]
// C function const GLubyte * glGetString ( GLenum name )
public
native
String
_glGetString
(
int
name
);
public
String
glGetString
(
int
name
)
{
String
returnValue
;
returnValue
=
_glGetString
(
name
);
return
returnValue
;
}