I'm currently stuck at making a live background using opengl ES2.
Inside my renderer i want to access textures and shaders from the resource folders, but i cant find a way to do that.
My current attempts at this have only resulted in crashes.
return new SurfaceRenderer((Activity) this.getApplicationContext(), WallpaperService.this);
It is the first paramenter in the the SurfaceRenderer constructor im struggeling with!
Later these variables will be used to access files like this:
final int resVertex = activity.getResources().getIdentifier(input+"_vertexshader","raw", activity.getPackageName());
int resID = activity.getResources().getIdentifier(path,"raw", activity.getPackageName());
InputStream inputStream = activity.getResources().openRawResource(resID);
Etc..
Where activity is the first parameter in the SurfaceRenderer constructor, and ctx the second one!
Any solutions to this?
Edit: Trying to implement the solution, but im still having issues!
This is my renderers constructor:
public SurfaceRenderer(GLWallpaperService activity, Context ctx) {
this.activity = activity;
cc = activity;
shaderlib = new ShaderLib(activity, ctx);
}
Which is used to forward the activity to my shader creation object, that eventually runs this:
inputStream = activity.getContext().getAssets().open(filename);
There is no getcontext function available, and when i try to make one, i only end up with a nullpointer, on this very command, any solutions?